CGGItemSets/Cargo.lock

709 lines
18 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
2023-07-09 08:33:42 +02:00
[[package]]
name = "bitflags"
2023-10-30 09:08:31 +01:00
version = "2.4.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 = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
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-10-30 09:08:31 +01:00
version = "0.3.9"
2023-08-05 09:03:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
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
2023-07-09 08:33:42 +02:00
[[package]]
name = "errno"
2023-10-30 09:08:31 +01:00
version = "0.3.5"
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 = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860"
2023-07-09 08:33:42 +02:00
dependencies = [
"libc",
"windows-sys 0.48.0",
]
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-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
2023-10-30 09:08:31 +01:00
[[package]]
name = "getrandom"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
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-10-30 09:08:31 +01:00
version = "0.14.2"
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 = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
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-10-01 17:21:13 +02:00
version = "2.0.2"
2018-06-09 12:35:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 17:21:13 +02:00
checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897"
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
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-10-08 11:10:30 +02:00
version = "0.2.149"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-08 11:10:30 +02:00
checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
2023-07-09 08:33:42 +02:00
[[package]]
name = "linux-raw-sys"
2023-10-30 09:08:31 +01:00
version = "0.4.10"
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 = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f"
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
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-10-30 09:08:31 +01:00
version = "1.0.69"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-30 09:08:31 +01:00
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
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-10-30 09:08:31 +01:00
version = "0.17.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 = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
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-10-30 09:08:31 +01:00
"windows-sys 0.48.0",
2018-06-04 22:51:18 +02:00
]
2023-07-09 08:33:42 +02:00
[[package]]
name = "rustix"
2023-10-30 09:08:31 +01:00
version = "0.38.21"
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 = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3"
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-10-30 09:08:31 +01:00
version = "0.21.8"
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 = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c"
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-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"
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-10-30 09:08:31 +01:00
version = "1.0.190"
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 = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7"
2023-08-26 19:52:47 +02:00
dependencies = [
"serde_derive",
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde_derive"
2023-10-30 09:08:31 +01:00
version = "1.0.190"
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 = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3"
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"
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-10-08 11:10:30 +02:00
version = "2.0.38"
2023-03-24 08:44:56 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-08 11:10:30 +02:00
checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
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-10-30 09:08:31 +01:00
version = "0.3.30"
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 = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
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-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"
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-10-01 17:21:13 +02:00
version = "2.8.0"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 17:21:13 +02:00
checksum = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3"
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-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]]
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-10-01 17:21:13 +02:00
version = "0.25.2"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 17:21:13 +02:00
checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
2020-06-28 18:01:50 +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
]