CGGItemSets/Cargo.lock

582 lines
15 KiB
Plaintext
Raw Normal View History

2019-04-21 22:25:22 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-10 10:09:49 +02:00
version = 3
2021-12-23 16:46:28 +01:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 15:55:46 +02:00
name = "autocfg"
2022-02-20 12:53:43 +01:00
version = "1.1.0"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-20 12:53:43 +01:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-04-21 22:25:22 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "base64"
2023-10-30 09:08:31 +01:00
version = "0.21.5"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
2018-06-04 22:51:18 +02:00
[[package]]
name = "cc"
2023-08-26 19:52:47 +02:00
version = "1.0.83"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-08-05 09:03:29 +02:00
dependencies = [
"libc",
]
2018-06-04 22:51:18 +02:00
2020-11-20 08:15:50 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2018-06-04 22:51:18 +02:00
[[package]]
name = "cggitem_sets"
2021-03-28 18:32:09 +02:00
version = "1.0.0"
dependencies = [
2020-11-20 08:15:50 +01:00
"indexmap",
"log",
2021-03-15 22:09:30 +01:00
"rayon",
2020-11-20 08:15:50 +01:00
"serde",
"serde_derive",
"serde_json",
"simple_logger",
2021-03-10 12:22:00 +01:00
"ureq",
2020-11-20 08:15:50 +01:00
"winreg",
2019-04-21 22:25:22 +02:00
]
[[package]]
2020-11-20 08:15:50 +01:00
name = "colored"
2023-12-10 17:51:11 +01:00
version = "2.1.0"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
2019-04-21 22:25:22 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"lazy_static",
2023-12-10 17:51:11 +01:00
"windows-sys",
2019-04-21 22:25:22 +02:00
]
2021-12-23 16:46:28 +01:00
[[package]]
name = "crc32fast"
2022-02-20 12:53:43 +01:00
version = "1.3.2"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-20 12:53:43 +01:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-12-23 16:46:28 +01:00
dependencies = [
"cfg-if",
]
2021-03-15 22:09:30 +01:00
[[package]]
name = "crossbeam-deque"
2023-12-29 23:15:48 +01:00
version = "0.8.4"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-12-29 23:15:48 +01:00
version = "0.9.17"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
2021-03-15 22:09:30 +01:00
dependencies = [
2022-03-16 07:39:30 +01:00
"autocfg",
2021-03-15 22:09:30 +01:00
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-12-29 23:15:48 +01:00
version = "0.8.18"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
]
2023-08-05 09:03:29 +02:00
[[package]]
name = "deranged"
2023-12-10 17:51:11 +01:00
version = "0.3.10"
2023-08-05 09:03:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc"
2023-10-30 09:08:31 +01:00
dependencies = [
"powerfmt",
]
2023-08-05 09:03:29 +02:00
2021-03-15 22:09:30 +01:00
[[package]]
name = "either"
2023-08-05 09:03:29 +02:00
version = "1.9.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-05 09:03:29 +02:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2021-03-15 22:09:30 +01:00
2023-06-25 10:10:32 +02:00
[[package]]
name = "equivalent"
2023-08-05 09:03:29 +02:00
version = "1.0.1"
2023-06-25 10:10:32 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-05 09:03:29 +02:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-06-25 10:10:32 +02:00
2021-12-23 16:46:28 +01:00
[[package]]
name = "flate2"
2023-10-30 09:08:31 +01:00
version = "1.0.28"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2021-12-23 16:46:28 +01:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "form_urlencoded"
2023-11-24 07:55:30 +01:00
version = "1.2.1"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2020-11-20 08:15:50 +01:00
dependencies = [
"percent-encoding",
]
2019-04-21 22:25:22 +02:00
2023-10-30 09:08:31 +01:00
[[package]]
name = "getrandom"
2023-11-24 07:55:30 +01:00
version = "0.2.11"
2023-10-30 09:08:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
2023-10-30 09:08:31 +01:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "hashbrown"
2023-11-29 08:10:57 +01:00
version = "0.14.3"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-29 08:10:57 +01:00
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
2020-06-28 15:55:46 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "idna"
2023-11-24 07:55:30 +01:00
version = "0.5.0"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"unicode-bidi",
"unicode-normalization",
2019-10-03 08:03:02 +02:00
]
2018-06-09 12:35:47 +02:00
[[package]]
name = "indexmap"
2023-11-24 07:55:30 +01:00
version = "2.1.0"
2018-06-09 12:35:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
2018-06-09 12:35:47 +02:00
dependencies = [
2023-06-25 10:10:32 +02:00
"equivalent",
2020-11-20 08:15:50 +01:00
"hashbrown",
2021-03-15 22:09:30 +01:00
"rayon",
2020-11-20 08:15:50 +01:00
"serde",
2018-06-09 12:35:47 +02:00
]
2021-12-22 07:59:01 +01:00
[[package]]
name = "itoa"
2023-12-10 17:51:11 +01:00
version = "1.0.10"
2021-12-22 07:59:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2021-12-22 07:59:01 +01:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "lazy_static"
2019-10-03 08:03:02 +02:00
version = "1.4.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-06-04 22:51:18 +02:00
[[package]]
name = "libc"
2023-12-10 17:51:11 +01:00
version = "0.2.151"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 18:01:50 +02:00
name = "log"
2023-08-26 19:52:47 +02:00
version = "0.4.20"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2018-06-04 22:51:18 +02:00
2021-12-23 16:46:28 +01:00
[[package]]
name = "miniz_oxide"
2023-05-02 07:11:48 +02:00
version = "0.7.1"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 07:11:48 +02:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2021-12-23 16:46:28 +01:00
dependencies = [
"adler",
]
2022-01-25 12:15:31 +01:00
[[package]]
name = "num_threads"
2022-05-08 18:07:56 +02:00
version = "0.1.6"
2022-01-25 12:15:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-01-25 12:15:31 +01:00
dependencies = [
"libc",
]
2020-06-28 18:34:31 +02:00
[[package]]
name = "once_cell"
2023-12-10 17:51:11 +01:00
version = "1.19.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2019-04-21 22:25:22 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "percent-encoding"
2023-11-24 07:55:30 +01:00
version = "2.3.1"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2019-10-03 08:03:02 +02:00
2023-10-30 09:08:31 +01:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "proc-macro2"
2023-12-29 23:15:48 +01:00
version = "1.0.71"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
2019-10-03 08:03:02 +02:00
dependencies = [
2022-05-21 08:05:25 +02:00
"unicode-ident",
2019-10-03 08:03:02 +02:00
]
[[package]]
name = "quote"
2023-08-26 19:52:47 +02:00
version = "1.0.33"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
2019-10-03 08:03:02 +02:00
]
2021-03-15 22:09:30 +01:00
[[package]]
name = "rayon"
2023-09-24 18:22:53 +02:00
version = "1.8.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
2021-03-15 22:09:30 +01:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-09-24 18:22:53 +02:00
version = "1.12.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
2021-03-15 22:09:30 +01:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2018-06-04 22:51:18 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "ring"
2023-12-10 17:51:11 +01:00
version = "0.17.7"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"cc",
2023-10-30 09:08:31 +01:00
"getrandom",
2021-03-10 12:22:00 +01:00
"libc",
"spin",
"untrusted",
2023-12-10 17:51:11 +01:00
"windows-sys",
2023-07-09 08:33:42 +02:00
]
2018-06-04 22:51:18 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "rustls"
2023-12-10 17:51:11 +01:00
version = "0.21.10"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
2020-11-20 08:15:50 +01:00
dependencies = [
"log",
2021-03-10 12:22:00 +01:00
"ring",
2023-10-01 17:21:13 +02:00
"rustls-webpki",
2021-03-10 12:22:00 +01:00
"sct",
2023-06-18 10:18:41 +02:00
]
2023-07-09 08:33:42 +02:00
[[package]]
name = "rustls-webpki"
2023-10-30 09:08:31 +01:00
version = "0.101.7"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2023-07-09 08:33:42 +02:00
dependencies = [
"ring",
"untrusted",
]
2018-06-04 22:51:18 +02:00
[[package]]
2019-04-21 22:25:22 +02:00
name = "ryu"
2023-12-10 17:51:11 +01:00
version = "1.0.16"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2018-06-04 22:51:18 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "sct"
2023-10-30 09:08:31 +01:00
version = "0.7.1"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"ring",
"untrusted",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "serde"
2023-11-24 07:55:30 +01:00
version = "1.0.193"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
2023-08-26 19:52:47 +02:00
dependencies = [
"serde_derive",
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde_derive"
2023-11-24 07:55:30 +01:00
version = "1.0.193"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
2023-05-14 21:42:50 +02:00
"syn",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "serde_json"
2023-11-24 07:55:30 +01:00
version = "1.0.108"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"indexmap",
2022-01-25 12:15:31 +01:00
"itoa",
2020-11-20 08:15:50 +01:00
"ryu",
"serde",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "simple_logger"
2023-12-29 23:15:48 +01:00
version = "4.3.3"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "8e7e46c8c90251d47d08b28b8a419ffb4aede0f87c2eea95e17d1d5bacbf3ef1"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"colored",
"log",
2021-11-26 08:33:14 +01:00
"time",
2023-12-10 17:51:11 +01:00
"windows-sys",
2018-06-04 22:51:18 +02:00
]
[[package]]
2021-03-10 12:22:00 +01:00
name = "spin"
2023-10-30 09:08:31 +01:00
version = "0.9.8"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2018-06-04 22:51:18 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "syn"
2023-12-29 23:15:48 +01:00
version = "2.0.43"
2023-03-24 08:44:56 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "ee659fb5f3d355364e1f3e5bc10fb82068efbf824a1e9d1c9504244a6469ad53"
2023-03-24 08:44:56 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "time"
2023-12-29 23:15:48 +01:00
version = "0.3.31"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
2018-06-04 22:51:18 +02:00
dependencies = [
2023-08-05 09:03:29 +02:00
"deranged",
2022-01-25 12:15:31 +01:00
"itoa",
2020-11-20 08:15:50 +01:00
"libc",
2022-01-25 12:15:31 +01:00
"num_threads",
2023-10-30 09:08:31 +01:00
"powerfmt",
2022-10-28 23:41:21 +02:00
"serde",
"time-core",
2021-11-26 08:33:14 +01:00
"time-macros",
2018-06-04 22:51:18 +02:00
]
2022-10-28 23:41:21 +02:00
[[package]]
name = "time-core"
2023-09-24 18:22:53 +02:00
version = "0.1.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-10-28 23:41:21 +02:00
2021-11-26 08:33:14 +01:00
[[package]]
name = "time-macros"
2023-12-29 23:15:48 +01:00
version = "0.2.16"
2021-11-26 08:33:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 23:15:48 +01:00
checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
2022-10-28 23:41:21 +02:00
dependencies = [
"time-core",
]
2021-11-26 08:33:14 +01:00
2020-06-28 15:55:46 +02:00
[[package]]
name = "tinyvec"
2022-05-08 18:07:56 +02:00
version = "1.6.0"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-11-20 08:15:50 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-05 08:13:42 +01:00
version = "0.1.1"
2020-06-28 15:55:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-05 08:13:42 +01:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-06-28 15:55:46 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "unicode-bidi"
2023-12-10 17:51:11 +01:00
version = "0.3.14"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2018-06-04 22:51:18 +02:00
2022-05-21 08:05:25 +02:00
[[package]]
name = "unicode-ident"
2023-09-24 18:22:53 +02:00
version = "1.0.12"
2022-05-21 08:05:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-05-21 08:05:25 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "unicode-normalization"
2022-09-17 11:14:18 +02:00
version = "0.1.22"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-17 11:14:18 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2019-04-21 22:25:22 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"tinyvec",
2019-04-21 22:25:22 +02:00
]
2018-06-04 22:51:18 +02:00
2021-03-10 12:22:00 +01:00
[[package]]
name = "untrusted"
2023-10-30 09:08:31 +01:00
version = "0.9.0"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2021-03-10 12:22:00 +01:00
[[package]]
name = "ureq"
2023-11-29 08:10:57 +01:00
version = "2.9.1"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-29 08:10:57 +01:00
checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97"
2021-03-10 12:22:00 +01:00
dependencies = [
"base64",
2021-12-23 16:46:28 +01:00
"flate2",
2021-03-10 12:22:00 +01:00
"log",
"once_cell",
"rustls",
2023-10-01 17:21:13 +02:00
"rustls-webpki",
2021-03-10 12:22:00 +01:00
"serde",
"serde_json",
"url",
"webpki-roots",
]
[[package]]
2019-10-03 08:03:02 +02:00
name = "url"
2023-11-24 07:55:30 +01:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"form_urlencoded",
"idna",
"percent-encoding",
2019-10-03 08:03:02 +02:00
]
2020-06-28 18:01:50 +02:00
[[package]]
2023-10-30 09:08:31 +01:00
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-11-20 08:15:50 +01:00
2020-06-28 18:01:50 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "webpki-roots"
2023-11-24 07:55:30 +01:00
version = "0.25.3"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:55:30 +01:00
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-12-10 17:51:11 +01:00
"windows-targets",
2023-04-03 21:04:20 +02:00
]
[[package]]
name = "windows-targets"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-04-03 21:04:20 +02:00
dependencies = [
2023-12-10 17:51:11 +01:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2022-10-28 23:41:21 +02:00
]
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_i686_gnu"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_i686_msvc"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-04-03 21:04:20 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-26 19:52:47 +02:00
version = "0.48.5"
2023-04-03 21:04:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-04-03 21:04:20 +02:00
2018-06-09 08:31:15 +02:00
[[package]]
name = "winreg"
2023-12-10 17:51:11 +01:00
version = "0.52.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 17:51:11 +01:00
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
2018-06-04 22:51:18 +02:00
dependencies = [
2023-02-19 18:46:30 +01:00
"cfg-if",
2023-12-10 17:51:11 +01:00
"windows-sys",
2020-11-20 08:15:50 +01:00
]