CGGItemSets/Cargo.lock

640 lines
17 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]]
name = "base64"
2024-02-04 09:48:36 +01:00
version = "0.21.7"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2018-06-04 22:51:18 +02:00
[[package]]
name = "cc"
2024-03-21 08:04:57 +01:00
version = "1.0.90"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
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
]
2021-12-23 16:46:28 +01:00
[[package]]
name = "crc32fast"
2024-02-19 08:17:44 +01:00
version = "1.4.0"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
2021-12-23 16:46:28 +01:00
dependencies = [
"cfg-if",
]
2021-03-15 22:09:30 +01:00
[[package]]
name = "crossbeam-deque"
2024-02-04 09:48:36 +01:00
version = "0.8.5"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
2021-03-15 22:09:30 +01:00
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2024-02-04 09:48:36 +01:00
version = "0.9.18"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
2021-03-15 22:09:30 +01:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-02-04 09:48:36 +01:00
version = "0.8.19"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
2021-03-15 22:09:30 +01:00
2023-08-05 09:03:29 +02:00
[[package]]
name = "deranged"
2024-01-05 23:46:37 +01:00
version = "0.3.11"
2023-08-05 09:03:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-05 23:46:37 +01:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
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"
2024-02-19 08:17:44 +01:00
version = "1.10.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
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"
2024-02-04 09:48:36 +01:00
version = "0.2.12"
2023-10-30 09:08:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
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"
2024-02-19 08:17:44 +01:00
version = "0.5.0"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +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"
2024-03-21 08:04:57 +01:00
version = "2.2.5"
2018-06-09 12:35:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
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 = "libc"
2024-02-04 09:48:36 +01:00
version = "0.2.153"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 18:01:50 +02:00
name = "log"
2024-03-21 08:04:57 +01:00
version = "0.4.21"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2018-06-04 22:51:18 +02:00
2021-12-23 16:46:28 +01:00
[[package]]
name = "miniz_oxide"
2024-02-04 09:48:36 +01:00
version = "0.7.2"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2021-12-23 16:46:28 +01:00
dependencies = [
"adler",
]
2024-02-04 09:48:36 +01:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2022-01-25 12:15:31 +01:00
[[package]]
name = "num_threads"
2024-02-19 08:17:44 +01:00
version = "0.1.7"
2022-01-25 12:15:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
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"
2024-03-21 08:04:57 +01:00
version = "1.0.79"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
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"
2024-01-05 23:46:37 +01:00
version = "1.0.35"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-05 23:46:37 +01:00
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
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"
version = "1.9.0"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
2021-03-15 22:09:30 +01:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2024-02-04 09:48:36 +01:00
version = "1.12.1"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
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"
2024-02-19 08:17:44 +01:00
version = "0.17.8"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"cc",
2024-02-19 08:17:44 +01:00
"cfg-if",
2023-10-30 09:08:31 +01:00
"getrandom",
2021-03-10 12:22:00 +01:00
"libc",
"spin",
"untrusted",
2024-02-19 08:17:44 +01:00
"windows-sys 0.52.0",
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"
2024-02-04 09:48:36 +01:00
version = "0.22.2"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
2020-11-20 08:15:50 +01:00
dependencies = [
"log",
2021-03-10 12:22:00 +01:00
"ring",
2024-02-04 09:48:36 +01:00
"rustls-pki-types",
2023-10-01 17:21:13 +02:00
"rustls-webpki",
2024-02-04 09:48:36 +01:00
"subtle",
"zeroize",
2023-06-18 10:18:41 +02:00
]
2024-02-04 09:48:36 +01:00
[[package]]
name = "rustls-pki-types"
2024-03-21 08:04:57 +01:00
version = "1.3.1"
2024-02-04 09:48:36 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
2024-02-04 09:48:36 +01:00
2023-07-09 08:33:42 +02:00
[[package]]
name = "rustls-webpki"
2024-02-04 09:48:36 +01:00
version = "0.102.2"
2023-07-09 08:33:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
2023-07-09 08:33:42 +02:00
dependencies = [
"ring",
2024-02-04 09:48:36 +01:00
"rustls-pki-types",
2023-07-09 08:33:42 +02:00
"untrusted",
]
2018-06-04 22:51:18 +02:00
[[package]]
2019-04-21 22:25:22 +02:00
name = "ryu"
2024-02-19 08:17:44 +01:00
version = "1.0.17"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde"
2024-03-21 08:04:57 +01:00
version = "1.0.197"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
2023-08-26 19:52:47 +02:00
dependencies = [
"serde_derive",
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde_derive"
2024-03-21 08:04:57 +01:00
version = "1.0.197"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
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"
2024-03-21 08:04:57 +01:00
version = "1.0.114"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
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
"log",
2021-11-26 08:33:14 +01:00
"time",
2024-02-19 08:17:44 +01:00
"windows-sys 0.48.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
2024-02-04 09:48:36 +01:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2019-10-03 08:03:02 +02:00
[[package]]
name = "syn"
2024-03-21 08:04:57 +01:00
version = "2.0.53"
2023-03-24 08:44:56 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
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"
2024-02-04 09:48:36 +01:00
version = "0.3.34"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
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",
2024-02-04 09:48:36 +01:00
"num-conv",
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"
2024-02-04 09:48:36 +01:00
version = "0.2.17"
2021-11-26 08:33:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
2022-10-28 23:41:21 +02:00
dependencies = [
2024-02-04 09:48:36 +01:00
"num-conv",
2022-10-28 23:41:21 +02:00
"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"
2024-02-04 09:48:36 +01:00
version = "0.3.15"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
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"
2024-03-21 08:04:57 +01:00
version = "0.1.23"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
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"
2024-02-19 08:17:44 +01:00
version = "2.9.6"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +01:00
checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35"
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",
2024-02-04 09:48:36 +01:00
"rustls-pki-types",
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"
2024-02-19 08:17:44 +01:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-19 08:17:44 +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"
2024-02-04 09:48:36 +01:00
version = "0.26.1"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:48:36 +01:00
checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
dependencies = [
"rustls-pki-types",
]
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 = [
2024-02-19 08:17:44 +01:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-03-21 08:04:57 +01:00
"windows-targets 0.52.4",
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 = [
2024-02-19 08:17:44 +01: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",
]
[[package]]
name = "windows-targets"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
2024-02-19 08:17:44 +01:00
dependencies = [
2024-03-21 08:04:57 +01:00
"windows_aarch64_gnullvm 0.52.4",
"windows_aarch64_msvc 0.52.4",
"windows_i686_gnu 0.52.4",
"windows_i686_msvc 0.52.4",
"windows_x86_64_gnu 0.52.4",
"windows_x86_64_gnullvm 0.52.4",
"windows_x86_64_msvc 0.52.4",
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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_aarch64_msvc"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_i686_gnu"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_i686_msvc"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_x86_64_gnu"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
2024-02-19 08:17:44 +01: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
2024-02-19 08:17:44 +01:00
[[package]]
name = "windows_x86_64_msvc"
2024-03-21 08:04:57 +01:00
version = "0.52.4"
2024-02-19 08:17:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 08:04:57 +01:00
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
2024-02-19 08:17:44 +01: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",
2024-02-19 08:17:44 +01:00
"windows-sys 0.48.0",
2020-11-20 08:15:50 +01:00
]
2024-02-04 09:48:36 +01:00
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"