CGGItemSets/Cargo.lock

808 lines
21 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-09-24 18:22:53 +02:00
version = "0.21.4"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
2018-06-04 22:51:18 +02:00
2023-07-09 08:33:42 +02:00
[[package]]
name = "bitflags"
2023-08-26 19:52:47 +02:00
version = "2.4.0"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2023-07-09 08:33:42 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 18:01:50 +02:00
name = "bumpalo"
2023-09-24 18:22:53 +02:00
version = "3.14.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2019-10-03 08:03:02 +02:00
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-07-09 08:33:42 +02:00
version = "2.0.4"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 08:33:42 +02:00
checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6"
2019-04-21 22:25:22 +02:00
dependencies = [
2023-07-09 08:33:42 +02:00
"is-terminal",
2020-11-20 08:15:50 +01:00
"lazy_static",
2023-07-09 08:33:42 +02:00
"windows-sys 0.48.0",
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-03-03 07:56:48 +01:00
version = "0.8.3"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 07:56:48 +01:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-06-18 10:18:41 +02:00
version = "0.9.15"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
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",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2023-06-18 10:18:41 +02:00
version = "0.8.16"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
]
2023-08-05 09:03:29 +02:00
[[package]]
name = "deranged"
2023-08-26 19:52:47 +02:00
version = "0.3.8"
2023-08-05 09:03:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
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
2023-07-09 08:33:42 +02:00
[[package]]
name = "errno"
2023-09-09 14:10:51 +02:00
version = "0.3.3"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-09 14:10:51 +02:00
checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
2023-07-09 08:33:42 +02:00
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2021-12-23 16:46:28 +01:00
[[package]]
name = "flate2"
2023-08-26 19:52:47 +02:00
version = "1.0.27"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 19:52:47 +02:00
checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
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-06-11 09:22:08 +02:00
version = "1.2.0"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-11 09:22:08 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2020-11-20 08:15:50 +01:00
dependencies = [
"percent-encoding",
]
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "hashbrown"
2023-06-25 10:10:32 +02:00
version = "0.14.0"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 10:10:32 +02:00
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2020-06-28 15:55:46 +02:00
[[package]]
name = "hermit-abi"
2023-09-24 18:22:53 +02:00
version = "0.3.3"
2020-06-28 15:55:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2022-12-30 18:17:28 +01:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "idna"
2023-06-11 09:22:08 +02:00
version = "0.4.0"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-11 09:22:08 +02:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
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-06-25 10:10:32 +02:00
version = "2.0.0"
2018-06-09 12:35:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 10:10:32 +02:00
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
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
]
2023-07-09 08:33:42 +02:00
[[package]]
name = "is-terminal"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
"hermit-abi",
"rustix",
"windows-sys 0.48.0",
]
2021-12-22 07:59:01 +01:00
[[package]]
name = "itoa"
2023-08-05 09:03:29 +02:00
version = "1.0.9"
2021-12-22 07:59:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-05 09:03:29 +02:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2021-12-22 07:59:01 +01:00
2020-06-28 18:01:50 +02:00
[[package]]
name = "js-sys"
2023-06-18 10:18:41 +02:00
version = "0.3.64"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"wasm-bindgen",
2020-06-28 18:01:50 +02: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-09-24 18:22:53 +02:00
version = "0.2.148"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
2023-07-09 08:33:42 +02:00
[[package]]
name = "linux-raw-sys"
2023-09-24 18:22:53 +02:00
version = "0.4.7"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
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-03-15 22:09:30 +01:00
[[package]]
name = "memoffset"
2023-06-18 10:18:41 +02:00
version = "0.9.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2021-03-15 22:09:30 +01:00
dependencies = [
"autocfg",
]
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-06-11 09:22:08 +02:00
version = "1.18.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-11 09:22:08 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2019-04-21 22:25:22 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "percent-encoding"
2023-06-11 09:22:08 +02:00
version = "2.3.0"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-11 09:22:08 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2019-10-03 08:03:02 +02:00
[[package]]
name = "proc-macro2"
2023-09-24 18:22:53 +02:00
version = "1.0.67"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
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"
version = "0.16.20"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 12:22:00 +01:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
2018-06-04 22:51:18 +02:00
]
2023-07-09 08:33:42 +02:00
[[package]]
name = "rustix"
2023-09-24 18:22:53 +02:00
version = "0.38.14"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f"
2023-07-09 08:33:42 +02:00
dependencies = [
"bitflags",
"errno",
"libc",
"linux-raw-sys",
"windows-sys 0.48.0",
]
2018-06-04 22:51:18 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "rustls"
2023-09-09 14:10:51 +02:00
version = "0.21.7"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-09 14:10:51 +02:00
checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
2020-11-20 08:15:50 +01:00
dependencies = [
"log",
2021-03-10 12:22:00 +01:00
"ring",
2023-09-24 18:22:53 +02:00
"rustls-webpki 0.101.6",
2021-03-10 12:22:00 +01:00
"sct",
2023-06-18 10:18:41 +02:00
]
[[package]]
name = "rustls-webpki"
2023-09-24 18:22:53 +02:00
version = "0.100.3"
2023-06-18 10:18:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3"
2023-06-18 10:18:41 +02:00
dependencies = [
"ring",
"untrusted",
2018-06-04 22:51:18 +02:00
]
2023-07-09 08:33:42 +02:00
[[package]]
name = "rustls-webpki"
2023-09-24 18:22:53 +02:00
version = "0.101.6"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
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-08-05 09:03:29 +02:00
version = "1.0.15"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-05 09:03:29 +02:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2018-06-04 22:51:18 +02:00
2021-03-15 22:09:30 +01:00
[[package]]
name = "scopeguard"
2023-08-05 09:03:29 +02:00
version = "1.2.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 = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-03-15 22:09:30 +01:00
2018-06-04 22:51:18 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "sct"
2021-10-22 07:24:32 +02:00
version = "0.7.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 07:24:32 +02:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
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-08-26 19:52:47 +02:00
version = "1.0.188"
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 = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
dependencies = [
"serde_derive",
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde_derive"
2023-08-26 19:52:47 +02:00
version = "1.0.188"
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 = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
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-09-24 18:22:53 +02:00
version = "1.0.107"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
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-06-18 10:18:41 +02:00
version = "4.2.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "2230cd5c29b815c9b699fb610b49a5ed65588f3509d9f0108be3a885da629333"
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-04-03 21:04:20 +02:00
"windows-sys 0.42.0",
2018-06-04 22:51:18 +02:00
]
[[package]]
2021-03-10 12:22:00 +01:00
name = "spin"
version = "0.5.2"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 12:22:00 +01:00
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2018-06-04 22:51:18 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "syn"
2023-09-24 18:22:53 +02:00
version = "2.0.37"
2023-03-24 08:44:56 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
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-09-24 18:22:53 +02:00
version = "0.3.29"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe"
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",
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-09-24 18:22:53 +02:00
version = "0.2.15"
2021-11-26 08:33:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-24 18:22:53 +02:00
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
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-03-24 08:44:56 +01:00
version = "0.3.13"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-24 08:44:56 +01:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
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"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "ureq"
2023-06-23 21:30:21 +02:00
version = "2.7.1"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-23 21:30:21 +02:00
checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9"
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-09-24 18:22:53 +02:00
"rustls-webpki 0.100.3",
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-09-09 14:10:51 +02:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-09 14:10:51 +02:00
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
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]]
name = "wasm-bindgen"
2023-06-18 10:18:41 +02:00
version = "0.2.87"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2020-06-28 18:01:50 +02:00
dependencies = [
2021-03-10 23:34:53 +01:00
"cfg-if",
2020-11-20 08:15:50 +01:00
"wasm-bindgen-macro",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-18 10:18:41 +02:00
version = "0.2.87"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"bumpalo",
"log",
2022-07-28 20:16:17 +02:00
"once_cell",
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
2023-05-14 21:42:50 +02:00
"syn",
2020-11-20 08:15:50 +01:00
"wasm-bindgen-shared",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-macro"
2023-06-18 10:18:41 +02:00
version = "0.2.87"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"quote",
"wasm-bindgen-macro-support",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-18 10:18:41 +02:00
version = "0.2.87"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
2023-05-14 21:42:50 +02:00
"syn",
2020-11-20 08:15:50 +01:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-18 10:18:41 +02:00
version = "0.2.87"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2020-11-20 08:15:50 +01:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "web-sys"
2023-06-18 10:18:41 +02:00
version = "0.3.64"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2020-11-20 08:15:50 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2020-06-28 18:01:50 +02:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "webpki-roots"
2023-06-18 10:18:41 +02:00
version = "0.23.1"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 10:18:41 +02:00
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
2020-06-28 18:01:50 +02:00
dependencies = [
2023-09-24 18:22:53 +02:00
"rustls-webpki 0.100.3",
2020-06-28 18:01:50 +02:00
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "winapi"
2020-06-28 15:55:46 +02:00
version = "0.3.9"
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 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-06-04 22:51:18 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-06-04 22:51:18 +02:00
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-03 21:04:20 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets",
]
[[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-08-26 19:52:47 +02:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2022-10-28 23:41:21 +02:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-10-28 23:41:21 +02:00
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_i686_gnu"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-10-28 23:41:21 +02:00
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_i686_msvc"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-10-28 23:41:21 +02:00
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-10-28 23:41:21 +02:00
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-10-28 23:41:21 +02:00
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
2022-10-28 23:41:21 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-17 20:13:16 +01:00
version = "0.42.2"
2022-10-28 23:41:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-17 20:13:16 +01:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-10-28 23:41:21 +02:00
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-08-26 19:52:47 +02:00
version = "0.51.0"
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 = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
2018-06-04 22:51:18 +02:00
dependencies = [
2023-02-19 18:46:30 +01:00
"cfg-if",
2023-04-03 21:04:20 +02:00
"windows-sys 0.48.0",
2020-11-20 08:15:50 +01:00
]