CGGItemSets/Cargo.lock

650 lines
16 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"
2019-10-03 08:03:02 +02:00
[[package]]
2020-06-28 15:55:46 +02:00
name = "atty"
version = "0.2.14"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2020-06-28 15:55:46 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"hermit-abi",
"libc",
2021-03-10 12:22:00 +01:00
"winapi",
2020-06-28 15:55:46 +02:00
]
2019-10-03 08:03:02 +02:00
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"
2020-11-20 08:15:50 +01:00
version = "0.13.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 = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 18:01:50 +02:00
name = "bumpalo"
2022-01-25 12:15:31 +01:00
version = "3.9.1"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 12:15:31 +01:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2019-10-03 08:03:02 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "cc"
2022-02-20 12:53:43 +01:00
version = "1.0.73"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-20 12:53:43 +01:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
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",
"lazy_static",
"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-03-10 12:22:00 +01:00
[[package]]
name = "chunked_transfer"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "colored"
2022-01-25 12:15:31 +01:00
version = "2.0.0"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 12:15:31 +01:00
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
2019-04-21 22:25:22 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"atty",
"lazy_static",
2021-03-10 12:22:00 +01:00
"winapi",
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-channel"
2022-04-01 07:29:42 +02:00
version = "0.5.4"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 07:29:42 +02:00
checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2021-08-01 09:47:02 +02:00
version = "0.8.1"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-01 09:47:02 +02:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2022-03-16 07:39:30 +01:00
version = "0.9.8"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 07:39:30 +01:00
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
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",
"lazy_static",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-03-16 07:39:30 +01:00
version = "0.8.8"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 07:39:30 +01:00
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2021-03-15 22:09:30 +01:00
dependencies = [
"cfg-if",
"lazy_static",
]
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2021-12-23 16:46:28 +01:00
[[package]]
name = "flate2"
2022-05-08 18:07:56 +02:00
version = "1.0.23"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
2021-12-23 16:46:28 +01:00
dependencies = [
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
]
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "form_urlencoded"
2021-03-10 12:22:00 +01:00
version = "1.0.1"
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 = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-20 08:15:50 +01:00
dependencies = [
"matches",
"percent-encoding",
]
2019-04-21 22:25:22 +02:00
[[package]]
2020-11-20 08:15:50 +01:00
name = "hashbrown"
2021-07-10 10:09:49 +02:00
version = "0.11.2"
2019-04-21 22:25:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 10:09:49 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-06-28 15:55:46 +02:00
[[package]]
name = "hermit-abi"
2021-07-10 10:09:49 +02:00
version = "0.1.19"
2020-06-28 15:55:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 10:09:49 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-06-28 15:55:46 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"libc",
2018-06-04 22:51:18 +02:00
]
2019-10-03 08:03:02 +02:00
[[package]]
name = "idna"
2021-05-07 08:04:21 +02:00
version = "0.2.3"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-07 08:04:21 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-10-03 08:03:02 +02:00
]
2018-06-09 12:35:47 +02:00
[[package]]
name = "indexmap"
2022-04-01 07:29:42 +02:00
version = "1.8.1"
2018-06-09 12:35:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 07:29:42 +02:00
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
2018-06-09 12:35:47 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"autocfg",
"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"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2020-06-28 18:01:50 +02:00
[[package]]
name = "js-sys"
2022-05-08 18:07:56 +02:00
version = "0.3.57"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
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"
2022-05-08 18:07:56 +02:00
version = "0.2.125"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
2018-06-04 22:51:18 +02:00
[[package]]
2020-06-28 18:01:50 +02:00
name = "log"
2022-05-08 18:07:56 +02:00
version = "0.4.17"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 23:34:53 +01:00
"cfg-if",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "matches"
2021-08-15 09:30:27 +02:00
version = "0.1.9"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-15 09:30:27 +02:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2018-06-04 22:51:18 +02:00
2021-03-15 22:09:30 +01:00
[[package]]
name = "memoffset"
2021-12-04 20:53:43 +01:00
version = "0.6.5"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-04 20:53:43 +01:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-03-15 22:09:30 +01:00
dependencies = [
"autocfg",
]
2021-12-23 16:46:28 +01:00
[[package]]
name = "miniz_oxide"
2022-05-08 18:07:56 +02:00
version = "0.5.1"
2021-12-23 16:46:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
2021-12-23 16:46:28 +01:00
dependencies = [
"adler",
]
2021-03-15 22:09:30 +01:00
[[package]]
name = "num_cpus"
2021-12-22 07:59:01 +01:00
version = "1.13.1"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-22 07:59:01 +01:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-03-15 22:09:30 +01:00
dependencies = [
"hermit-abi",
"libc",
]
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"
2022-03-04 08:25:39 +01:00
version = "1.10.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-04 08:25:39 +01:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2019-04-21 22:25:22 +02:00
2019-10-03 08:03:02 +02:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-10-03 08:03:02 +02:00
[[package]]
name = "proc-macro2"
2022-05-08 18:07:56 +02:00
version = "1.0.38"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"unicode-xid",
2019-10-03 08:03:02 +02:00
]
[[package]]
name = "quote"
2022-05-08 18:07:56 +02:00
version = "1.0.18"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
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"
2022-05-08 18:07:56 +02:00
version = "1.5.2"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "fd249e82c21598a9a426a4e00dd7adc1d640b22445ec8545feef801d1a74c221"
2021-03-15 22:09:30 +01:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-05-08 18:07:56 +02:00
version = "1.9.2"
2021-03-15 22:09:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "9f51245e1e62e1f1629cbfec37b5793bbabcaeb90f30e94d2ba03564687353e4"
2021-03-15 22:09:30 +01:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
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
]
[[package]]
2021-03-10 12:22:00 +01:00
name = "rustls"
2022-02-20 12:53:43 +01:00
version = "0.20.4"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-20 12:53:43 +01:00
checksum = "4fbfeb8d0ddb84706bc597a5574ab8912817c52a397f819e5b614e2265206921"
2020-11-20 08:15:50 +01:00
dependencies = [
"log",
2021-03-10 12:22:00 +01:00
"ring",
"sct",
"webpki",
2018-06-04 22:51:18 +02:00
]
[[package]]
2019-04-21 22:25:22 +02:00
name = "ryu"
2021-12-22 07:59:01 +01:00
version = "1.0.9"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-22 07:59:01 +01:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2018-06-04 22:51:18 +02:00
2021-03-15 22:09:30 +01:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
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"
2022-05-08 18:07:56 +02:00
version = "1.0.137"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
2018-06-04 22:51:18 +02:00
[[package]]
name = "serde_derive"
2022-05-08 18:07:56 +02:00
version = "1.0.137"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
"syn",
2018-06-04 22:51:18 +02:00
]
[[package]]
name = "serde_json"
2022-05-08 18:07:56 +02:00
version = "1.0.81"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
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"
2022-01-25 12:15:31 +01:00
version = "2.1.0"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 12:15:31 +01:00
checksum = "c75a9723083573ace81ad0cdfc50b858aa3c366c48636edb4109d73122a0c0ea"
2018-06-04 22:51:18 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"atty",
"colored",
"log",
2021-11-26 08:33:14 +01:00
"time",
2021-03-10 12:22:00 +01:00
"winapi",
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"
2022-05-08 18:07:56 +02:00
version = "1.0.92"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
"unicode-xid",
2019-10-03 08:03:02 +02:00
]
2018-06-04 22:51:18 +02:00
[[package]]
name = "time"
2022-04-01 07:29:42 +02:00
version = "0.3.9"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 07:29:42 +02:00
checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
2018-06-04 22:51:18 +02:00
dependencies = [
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",
2021-11-26 08:33:14 +01:00
"time-macros",
2018-06-04 22:51:18 +02:00
]
2021-11-26 08:33:14 +01:00
[[package]]
name = "time-macros"
2022-04-01 07:29:42 +02:00
version = "0.2.4"
2021-11-26 08:33:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 07:29:42 +02:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
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"
version = "0.1.0"
2020-06-28 15:55:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-20 08:15:50 +01:00
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-28 15:55:46 +02:00
2018-06-04 22:51:18 +02:00
[[package]]
name = "unicode-bidi"
2022-05-08 18:07:56 +02:00
version = "0.3.8"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2018-06-04 22:51:18 +02:00
[[package]]
name = "unicode-normalization"
2021-06-13 20:32:57 +02:00
version = "0.1.19"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-13 20:32:57 +02:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
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
2019-10-03 08:03:02 +02:00
[[package]]
name = "unicode-xid"
2022-05-08 18:07:56 +02:00
version = "0.2.3"
2019-10-03 08:03:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
2019-10-03 08:03:02 +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"
2021-12-23 16:46:28 +01:00
version = "2.4.0"
2021-03-10 12:22:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 16:46:28 +01:00
checksum = "9399fa2f927a3d327187cbd201480cee55bee6ac5d3c77dd27f0c6814cff16d5"
2021-03-10 12:22:00 +01:00
dependencies = [
"base64",
"chunked_transfer",
2021-12-23 16:46:28 +01:00
"flate2",
2021-03-10 12:22:00 +01:00
"log",
"once_cell",
"rustls",
"serde",
"serde_json",
"url",
"webpki",
"webpki-roots",
]
[[package]]
2019-10-03 08:03:02 +02:00
name = "url"
2021-05-10 10:31:49 +02:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-10 10:31:49 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-10-03 08:03:02 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
2019-10-03 08:03:02 +02:00
]
2020-06-28 18:01:50 +02:00
[[package]]
name = "wasm-bindgen"
2022-05-08 18:07:56 +02:00
version = "0.2.80"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
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"
2022-05-08 18:07:56 +02:00
version = "0.2.80"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-macro"
2022-05-08 18:07:56 +02:00
version = "0.2.80"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
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"
2022-05-08 18:07:56 +02:00
version = "0.2.80"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
2020-06-28 18:01:50 +02:00
dependencies = [
2020-11-20 08:15:50 +01:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-06-28 18:01:50 +02:00
]
[[package]]
name = "wasm-bindgen-shared"
2022-05-08 18:07:56 +02:00
version = "0.2.80"
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 = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
2020-11-20 08:15:50 +01:00
[[package]]
2021-03-10 12:22:00 +01:00
name = "web-sys"
2022-05-08 18:07:56 +02:00
version = "0.3.57"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
2020-11-20 08:15:50 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
2021-03-10 12:22:00 +01:00
name = "webpki"
2021-10-22 07:24:32 +02:00
version = "0.22.0"
2020-11-20 08:15:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 07:24:32 +02:00
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2020-11-20 08:15:50 +01:00
dependencies = [
2021-03-10 12:22:00 +01:00
"ring",
"untrusted",
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"
2022-05-08 18:07:56 +02:00
version = "0.22.3"
2020-06-28 18:01:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 18:07:56 +02:00
checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf"
2020-06-28 18:01:50 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"webpki",
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
2018-06-09 08:31:15 +02:00
[[package]]
name = "winreg"
2021-10-23 17:06:55 +02:00
version = "0.10.1"
2018-06-04 22:51:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-23 17:06:55 +02:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2018-06-04 22:51:18 +02:00
dependencies = [
2021-03-10 12:22:00 +01:00
"winapi",
2020-11-20 08:15:50 +01:00
]