sinoptik/Cargo.lock

2754 lines
67 KiB
Plaintext
Raw Normal View History

2022-02-12 12:25:05 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-05-10 14:55:57 +02:00
[[package]]
name = "aead"
2022-10-17 19:53:01 +02:00
version = "0.5.1"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
2022-05-10 14:55:57 +02:00
dependencies = [
2022-10-17 19:53:01 +02:00
"crypto-common",
2022-05-10 14:55:57 +02:00
"generic-array",
]
[[package]]
name = "aes"
version = "0.8.2"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
2022-05-10 14:55:57 +02:00
dependencies = [
"cfg-if",
2022-05-10 14:55:57 +02:00
"cipher",
"cpufeatures",
]
[[package]]
name = "aes-gcm"
2022-10-17 19:53:01 +02:00
version = "0.10.1"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c"
2022-05-10 14:55:57 +02:00
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
2022-08-12 09:44:15 +02:00
[[package]]
name = "android_system_properties"
2022-10-17 19:53:01 +02:00
version = "0.1.5"
2022-08-12 09:44:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-12 09:44:15 +02:00
dependencies = [
"libc",
]
2023-03-23 16:56:48 +01:00
[[package]]
name = "approx"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
dependencies = [
"num-traits",
]
[[package]]
name = "assert_float_eq"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cea652ffbedecf29e9cd41bb4c066881057a42c0c119040f022802b26853e77"
[[package]]
name = "assert_matches"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
2022-02-12 12:25:05 +01:00
[[package]]
name = "async-stream"
2023-03-23 16:56:48 +01:00
version = "0.3.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e"
2022-02-12 12:25:05 +01:00
dependencies = [
"async-stream-impl",
"futures-core",
2023-03-23 16:56:48 +01:00
"pin-project-lite",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "async-stream-impl"
2023-03-23 16:56:48 +01:00
version = "0.3.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "async-trait"
2023-03-23 16:56:48 +01:00
version = "0.1.67"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "async_once"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82"
2022-02-12 12:25:05 +01:00
[[package]]
name = "atomic"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
dependencies = [
"autocfg",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
2022-02-12 12:25:05 +01:00
"libc",
"winapi",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "base64"
version = "0.20.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2022-02-12 12:25:05 +01:00
[[package]]
name = "binascii"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
2022-02-12 21:08:13 +01:00
[[package]]
name = "bit_field"
2023-03-23 16:56:48 +01:00
version = "0.10.2"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
2022-02-12 21:08:13 +01:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-05-10 14:55:57 +02:00
[[package]]
name = "block-buffer"
2023-03-23 16:56:48 +01:00
version = "0.10.4"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-05-10 14:55:57 +02:00
dependencies = [
"generic-array",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "bumpalo"
version = "3.12.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "bytemuck"
2023-03-23 16:56:48 +01:00
version = "1.13.1"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
2022-02-12 21:08:13 +01:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2022-02-12 12:25:05 +01:00
[[package]]
name = "bytes"
2023-03-23 16:56:48 +01:00
version = "1.4.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-02-12 12:25:05 +01:00
[[package]]
name = "cached"
2022-10-17 19:53:01 +02:00
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "f3e27085975166ffaacbd04527132e1cf5906fa612991f9b4fea08e787da2961"
dependencies = [
"async-trait",
"async_once",
"cached_proc_macro",
"cached_proc_macro_types",
"futures",
2022-07-17 13:24:56 +02:00
"hashbrown",
"instant",
"lazy_static",
"once_cell",
"thiserror",
"tokio",
]
[[package]]
name = "cached_proc_macro"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "751f7f4e7a091545e7f6c65bacc404eaee7e87bfb1f9ece234a1caa173dc16f2"
dependencies = [
"cached_proc_macro_types",
"darling",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
]
[[package]]
name = "cached_proc_macro_types"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
2022-02-12 12:25:05 +01:00
[[package]]
name = "cc"
version = "1.0.79"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-02-12 12:25:05 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2023-03-23 16:56:48 +01:00
version = "0.4.24"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-08-12 09:44:15 +02:00
"iana-time-zone",
"js-sys",
2022-02-12 12:25:05 +01:00
"num-integer",
"num-traits",
"serde",
"time 0.1.45",
2022-08-12 09:44:15 +02:00
"wasm-bindgen",
"winapi",
2022-02-12 12:25:05 +01:00
]
2022-02-13 15:38:17 +01:00
[[package]]
name = "chrono-tz"
2022-08-12 09:44:15 +02:00
version = "0.6.3"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
2022-02-13 15:38:17 +01:00
dependencies = [
"chrono",
"chrono-tz-build",
"phf",
]
[[package]]
name = "chrono-tz-build"
2022-08-12 09:44:15 +02:00
version = "0.0.3"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
2022-02-13 15:38:17 +01:00
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
2022-05-10 14:55:57 +02:00
[[package]]
name = "cipher"
2023-03-23 16:56:48 +01:00
version = "0.4.4"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
2022-05-10 14:55:57 +02:00
dependencies = [
2022-10-17 19:53:01 +02:00
"crypto-common",
"inout",
]
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
2022-05-10 14:55:57 +02:00
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2022-02-12 12:25:05 +01:00
[[package]]
name = "cookie"
version = "0.16.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-05-10 14:55:57 +02:00
"aes-gcm",
"base64 0.20.0",
2022-05-10 14:55:57 +02:00
"hkdf",
"hmac",
2022-02-12 12:25:05 +01:00
"percent-encoding",
2022-05-10 14:55:57 +02:00
"rand",
"sha2",
"subtle",
2023-03-23 16:56:48 +01:00
"time 0.3.20",
2022-02-12 12:25:05 +01:00
"version_check",
]
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-05-10 14:55:57 +02:00
[[package]]
name = "cpufeatures"
2022-10-17 19:53:01 +02:00
version = "0.2.5"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2022-05-10 14:55:57 +02:00
dependencies = [
"libc",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
2022-02-12 21:08:13 +01:00
]
[[package]]
name = "crossbeam-channel"
2023-03-23 16:56:48 +01:00
version = "0.5.7"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
2022-02-12 21:08:13 +01:00
dependencies = [
"cfg-if",
2022-02-12 21:08:13 +01:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2023-03-23 16:56:48 +01:00
version = "0.8.3"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2022-02-12 21:08:13 +01:00
dependencies = [
"cfg-if",
2022-02-12 21:08:13 +01:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-03-23 16:56:48 +01:00
version = "0.9.14"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
2022-02-12 21:08:13 +01:00
dependencies = [
2022-05-07 20:21:09 +02:00
"autocfg",
"cfg-if",
2022-02-12 21:08:13 +01:00
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2023-03-23 16:56:48 +01:00
version = "0.8.15"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
2022-02-12 21:08:13 +01:00
dependencies = [
"cfg-if",
2022-02-12 21:08:13 +01:00
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2022-05-10 14:55:57 +02:00
[[package]]
name = "crypto-common"
2022-07-17 13:24:56 +02:00
version = "0.1.6"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-05-10 14:55:57 +02:00
dependencies = [
"generic-array",
2022-10-17 19:53:01 +02:00
"rand_core",
2022-05-10 14:55:57 +02:00
"typenum",
]
[[package]]
name = "csv"
2023-03-23 16:56:48 +01:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
dependencies = [
"csv-core",
2023-03-23 16:56:48 +01:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
2022-05-10 14:55:57 +02:00
[[package]]
name = "ctr"
2022-10-17 19:53:01 +02:00
version = "0.9.2"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
2022-05-10 14:55:57 +02:00
dependencies = [
"cipher",
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "cxx"
2023-03-23 16:56:48 +01:00
version = "1.0.93"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "a9c00419335c41018365ddf7e4d5f1c12ee3659ddcf3e01974650ba1de73d038"
2022-10-17 19:53:01 +02:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
2023-03-23 16:56:48 +01:00
version = "1.0.93"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "fb8307ad413a98fff033c8545ecf133e3257747b3bae935e7602aab8aa92d4ca"
2022-10-17 19:53:01 +02:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-10-17 19:53:01 +02:00
]
[[package]]
name = "cxxbridge-flags"
2023-03-23 16:56:48 +01:00
version = "1.0.93"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "edc52e2eb08915cb12596d29d55f0b5384f00d697a646dbd269b6ecb0fbd9d31"
2022-10-17 19:53:01 +02:00
[[package]]
name = "cxxbridge-macro"
2023-03-23 16:56:48 +01:00
version = "1.0.93"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "631569015d0d8d54e6c241733f944042623ab6df7bc3be7466874b05fcdb1c5f"
2022-10-17 19:53:01 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-10-17 19:53:01 +02:00
]
[[package]]
name = "darling"
2022-05-07 20:21:09 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2022-05-07 20:21:09 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
]
[[package]]
name = "darling_macro"
2022-05-07 20:21:09 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
dependencies = [
"darling_core",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "devise"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50c7580b072f1c8476148f16e0a0d5dedddab787da98d86c5082c5e9ed8ab595"
dependencies = [
"devise_codegen",
"devise_core",
]
[[package]]
name = "devise_codegen"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "123c73e7a6e51b05c75fe1a1b2f4e241399ea5740ed810b0e3e6cacd9db5e7b2"
dependencies = [
"devise_core",
"quote",
]
[[package]]
name = "devise_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "841ef46f4787d9097405cac4e70fb8644fc037b526e8c14054247c0263c400d0"
dependencies = [
"bitflags",
"proc-macro2",
2023-03-23 16:56:48 +01:00
"proc-macro2-diagnostics 0.9.1",
2022-02-12 12:25:05 +01:00
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
]
[[package]]
2022-05-10 14:55:57 +02:00
name = "digest"
version = "0.10.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-05-10 14:55:57 +02:00
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "either"
version = "1.8.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-02-12 12:25:05 +01:00
[[package]]
name = "encoding_rs"
2023-03-23 16:56:48 +01:00
version = "0.8.32"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
]
2023-03-23 16:56:48 +01:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "exr"
2023-03-23 16:56:48 +01:00
version = "1.6.3"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "bdd2162b720141a91a054640662d3edce3d50a944a50ffca5313cd951abb35b4"
2022-02-12 21:08:13 +01:00
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
"miniz_oxide",
2023-03-23 16:56:48 +01:00
"rayon-core",
2022-02-12 21:08:13 +01:00
"smallvec",
2023-03-23 16:56:48 +01:00
"zune-inflate",
2022-02-12 21:08:13 +01:00
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "fastrand"
2023-03-23 16:56:48 +01:00
version = "1.9.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-02-12 12:25:05 +01:00
dependencies = [
"instant",
]
[[package]]
name = "figment"
2022-10-17 19:53:01 +02:00
version = "0.10.8"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "4e56602b469b2201400dec66a66aec5a9b8761ee97cd1b8c96ab2483fcc16cc9"
2022-02-12 12:25:05 +01:00
dependencies = [
"atomic",
"pear",
"serde",
"toml",
"uncased",
"version_check",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "flate2"
version = "1.0.25"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2022-02-12 21:08:13 +01:00
dependencies = [
"crc32fast",
"miniz_oxide",
2022-02-12 21:08:13 +01:00
]
[[package]]
name = "flume"
2022-08-12 09:44:15 +02:00
version = "0.10.14"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
2022-02-12 21:08:13 +01:00
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
2022-10-17 19:53:01 +02:00
version = "1.1.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2022-02-12 12:25:05 +01:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
2022-02-12 12:25:05 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
2022-02-12 12:25:05 +01:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
2022-02-12 12:25:05 +01:00
[[package]]
name = "futures-io"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
2022-02-12 12:25:05 +01:00
[[package]]
name = "futures-sink"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
2022-02-12 12:25:05 +01:00
[[package]]
name = "futures-task"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
2022-02-12 12:25:05 +01:00
[[package]]
name = "futures-util"
2023-03-23 16:56:48 +01:00
version = "0.3.27"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
2022-02-12 12:25:05 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
"pin-utils",
"slab",
]
[[package]]
name = "generator"
2023-03-23 16:56:48 +01:00
version = "0.7.3"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "33a20a288a94683f5f4da0adecdbe095c94a77c295e514cc6484e9394dd8376e"
2022-02-12 12:25:05 +01:00
dependencies = [
"cc",
"libc",
"log",
"rustversion",
2023-03-23 16:56:48 +01:00
"windows 0.44.0",
2022-02-12 12:25:05 +01:00
]
2022-05-10 14:55:57 +02:00
[[package]]
name = "generic-array"
2022-08-12 09:44:15 +02:00
version = "0.14.6"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2022-05-10 14:55:57 +02:00
dependencies = [
"typenum",
"version_check",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "geo-types"
2023-03-23 16:56:48 +01:00
version = "0.7.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "a5f0b3068e1537a4b861ec3734f4aa9c317d537cf0845bf6fb6221973499d26c"
2022-02-12 12:25:05 +01:00
dependencies = [
2023-03-23 16:56:48 +01:00
"approx",
2022-02-12 12:25:05 +01:00
"num-traits",
2023-03-23 16:56:48 +01:00
"serde",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "geocoding"
version = "0.4.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa5cbcc647209c5e0526a0ce3503e57413e1f17dca846b36c402587b2959a719"
2022-02-12 12:25:05 +01:00
dependencies = [
"chrono",
"geo-types",
"hyper",
2022-02-12 12:25:05 +01:00
"num-traits",
"reqwest",
2022-02-12 12:25:05 +01:00
"serde",
"serde_json",
"thiserror",
]
[[package]]
name = "getrandom"
version = "0.2.8"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 21:08:13 +01:00
"js-sys",
2022-02-12 12:25:05 +01:00
"libc",
2022-07-17 13:24:56 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-02-12 21:08:13 +01:00
"wasm-bindgen",
]
2022-05-10 14:55:57 +02:00
[[package]]
name = "ghash"
2022-10-17 19:53:01 +02:00
version = "0.5.0"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
2022-05-10 14:55:57 +02:00
dependencies = [
"opaque-debug",
"polyval",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "gif"
2022-07-17 13:24:56 +02:00
version = "0.11.4"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
2022-02-12 21:08:13 +01:00
dependencies = [
"color_quant",
"weezl",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "glob"
version = "0.3.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2022-02-12 12:25:05 +01:00
[[package]]
name = "h2"
2023-03-23 16:56:48 +01:00
version = "0.3.16"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
2022-02-12 12:25:05 +01:00
dependencies = [
"bytes",
2022-02-12 12:25:05 +01:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-07-17 13:24:56 +02:00
"tokio-util",
2022-02-12 12:25:05 +01:00
"tracing",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "half"
version = "2.2.1"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
2022-10-17 19:53:01 +02:00
dependencies = [
"crunchy",
]
2022-02-12 21:08:13 +01:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "hashbrown"
2022-07-17 13:24:56 +02:00
version = "0.12.3"
2022-05-07 20:21:09 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-05-07 20:21:09 +02:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-03-23 16:56:48 +01:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2022-05-10 14:55:57 +02:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "http"
2023-03-23 16:56:48 +01:00
version = "0.2.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-02-12 12:25:05 +01:00
dependencies = [
"bytes",
2022-02-12 12:25:05 +01:00
"fnv",
2023-03-23 16:56:48 +01:00
"itoa",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "http-body"
2022-07-17 13:24:56 +02:00
version = "0.4.5"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2022-02-12 12:25:05 +01:00
dependencies = [
"bytes",
2022-02-12 12:25:05 +01:00
"http",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "httparse"
2022-10-17 19:53:01 +02:00
version = "1.8.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2022-02-12 12:25:05 +01:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "hyper"
2023-03-23 16:56:48 +01:00
version = "0.14.25"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
2022-02-12 12:25:05 +01:00
dependencies = [
"bytes",
2022-02-12 12:25:05 +01:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
2022-02-12 12:25:05 +01:00
"http",
"http-body",
2022-02-12 12:25:05 +01:00
"httparse",
"httpdate",
2023-03-23 16:56:48 +01:00
"itoa",
"pin-project-lite",
"socket2",
"tokio",
2022-02-12 12:25:05 +01:00
"tower-service",
"tracing",
"want",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
2022-02-12 21:08:13 +01:00
"native-tls",
"tokio",
2022-02-12 21:08:13 +01:00
"tokio-native-tls",
]
2022-08-12 09:44:15 +02:00
[[package]]
name = "iana-time-zone"
2023-03-23 16:56:48 +01:00
version = "0.1.54"
2022-08-12 09:44:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "0c17cc76786e99f8d2f055c11159e7f0091c42474dcc3189fbab96072e873e6d"
2022-08-12 09:44:15 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-10-17 19:53:01 +02:00
"iana-time-zone-haiku",
2022-08-12 09:44:15 +02:00
"js-sys",
"wasm-bindgen",
2023-03-23 16:56:48 +01:00
"windows 0.46.0",
2022-08-12 09:44:15 +02:00
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2022-02-12 12:25:05 +01:00
[[package]]
name = "idna"
2022-10-17 19:53:01 +02:00
version = "0.3.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2022-02-12 12:25:05 +01:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "image"
version = "0.24.5"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945"
2022-02-12 21:08:13 +01:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"exr",
"gif",
2022-05-07 20:21:09 +02:00
"jpeg-decoder",
2022-02-12 21:08:13 +01:00
"num-rational",
"num-traits",
"png",
"scoped_threadpool",
"tiff",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "indexmap"
version = "1.9.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
2022-02-12 12:25:05 +01:00
dependencies = [
"autocfg",
2022-07-17 13:24:56 +02:00
"hashbrown",
2022-02-12 12:25:05 +01:00
"serde",
]
[[package]]
name = "inlinable_string"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
2022-10-17 19:53:01 +02:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
]
[[package]]
2023-03-23 16:56:48 +01:00
name = "io-lifetimes"
version = "1.0.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb"
dependencies = [
"hermit-abi 0.3.1",
"libc",
"windows-sys 0.45.0",
]
2022-02-12 12:25:05 +01:00
[[package]]
2023-03-23 16:56:48 +01:00
name = "ipnet"
version = "2.7.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"
2022-02-12 12:25:05 +01:00
[[package]]
name = "itoa"
2023-03-23 16:56:48 +01:00
version = "1.0.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "jpeg-decoder"
version = "0.3.0"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
2022-02-12 21:08:13 +01:00
dependencies = [
"rayon",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "js-sys"
2023-03-23 16:56:48 +01:00
version = "0.3.61"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
2022-02-12 12:25:05 +01:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-02-12 21:08:13 +01:00
[[package]]
name = "lebe"
2022-10-17 19:53:01 +02:00
version = "0.5.2"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2022-02-12 21:08:13 +01:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "libc"
2023-03-23 16:56:48 +01:00
version = "0.2.140"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
[[package]]
name = "libm"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
2022-10-17 19:53:01 +02:00
[[package]]
name = "link-cplusplus"
version = "1.0.8"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
2022-10-17 19:53:01 +02:00
dependencies = [
"cc",
]
2022-02-12 12:25:05 +01:00
2023-03-23 16:56:48 +01:00
[[package]]
name = "linux-raw-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-02-12 12:25:05 +01:00
[[package]]
name = "lock_api"
2022-10-17 19:53:01 +02:00
version = "0.4.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-05-07 20:21:09 +02:00
"autocfg",
2022-02-12 12:25:05 +01:00
"scopeguard",
]
[[package]]
name = "log"
2022-05-07 20:21:09 +02:00
version = "0.4.17"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "loom"
2022-07-17 13:24:56 +02:00
version = "0.5.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
"generator",
"scoped-tls",
"serde",
"serde_json",
"tracing",
2022-05-07 20:21:09 +02:00
"tracing-subscriber",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
[[package]]
name = "memchr"
2022-05-07 20:21:09 +02:00
version = "2.5.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "memoffset"
2023-03-23 16:56:48 +01:00
version = "0.8.0"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
2022-02-12 21:08:13 +01:00
dependencies = [
"autocfg",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "mime"
2023-03-23 16:56:48 +01:00
version = "0.3.17"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-02-12 12:25:05 +01:00
2022-10-17 19:53:01 +02:00
[[package]]
name = "miniz_oxide"
version = "0.6.2"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2022-02-12 21:08:13 +01:00
dependencies = [
"adler",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "mio"
2023-03-23 16:56:48 +01:00
version = "0.8.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2022-02-12 12:25:05 +01:00
dependencies = [
"libc",
"log",
2022-05-07 20:21:09 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
2023-03-23 16:56:48 +01:00
"windows-sys 0.45.0",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "multer"
2022-10-17 19:53:01 +02:00
version = "2.0.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22"
2022-02-12 12:25:05 +01:00
dependencies = [
"bytes",
2022-02-12 12:25:05 +01:00
"encoding_rs",
"futures-util",
"http",
"httparse",
"log",
"memchr",
"mime",
"spin",
"tokio",
2022-07-17 13:24:56 +02:00
"tokio-util",
2022-02-12 12:25:05 +01:00
"version_check",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "nanorand"
2022-05-07 20:21:09 +02:00
version = "0.7.0"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
2022-02-12 21:08:13 +01:00
dependencies = [
"getrandom",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "native-tls"
version = "0.2.11"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2022-02-12 12:25:05 +01:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "num-integer"
2022-05-07 20:21:09 +02:00
version = "0.1.45"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2022-02-12 12:25:05 +01:00
dependencies = [
"autocfg",
"num-traits",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "num-rational"
2022-07-17 13:24:56 +02:00
version = "0.4.1"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
2022-02-12 21:08:13 +01:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "num-traits"
2022-05-07 20:21:09 +02:00
version = "0.2.15"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2022-02-12 12:25:05 +01:00
dependencies = [
"autocfg",
2023-03-23 16:56:48 +01:00
"libm",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "num_cpus"
version = "1.15.0"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-05-10 14:55:57 +02:00
dependencies = [
"hermit-abi 0.2.6",
2022-05-10 14:55:57 +02:00
"libc",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "once_cell"
2023-03-23 16:56:48 +01:00
version = "1.17.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-02-12 12:25:05 +01:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2022-02-12 12:25:05 +01:00
[[package]]
name = "openssl"
2023-03-23 16:56:48 +01:00
version = "0.10.47"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "d8b277f87dacc05a6b709965d1cbafac4649d6ce9f3ce9ceb88508b5666dfec9"
2022-02-12 12:25:05 +01:00
dependencies = [
"bitflags",
"cfg-if",
2022-02-12 12:25:05 +01:00
"foreign-types",
"libc",
"once_cell",
2022-05-07 20:21:09 +02:00
"openssl-macros",
2022-02-12 12:25:05 +01:00
"openssl-sys",
]
2022-05-07 20:21:09 +02:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-05-07 20:21:09 +02:00
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2023-03-23 16:56:48 +01:00
version = "0.9.82"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "a95792af3c4e0153c3914df2261bedd30a98476f94dc892b67dfe1d89d433a04"
2022-02-12 12:25:05 +01:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-02-12 12:25:05 +01:00
[[package]]
name = "parking_lot"
2022-07-17 13:24:56 +02:00
version = "0.12.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-02-12 12:25:05 +01:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-03-23 16:56:48 +01:00
version = "0.9.7"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
"libc",
"redox_syscall",
"smallvec",
2023-03-23 16:56:48 +01:00
"windows-sys 0.45.0",
2022-02-12 12:25:05 +01:00
]
2022-02-13 15:38:17 +01:00
[[package]]
name = "parse-zoneinfo"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
dependencies = [
"regex",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "pear"
2023-03-23 16:56:48 +01:00
version = "0.2.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "0ec95680a7087503575284e5063e14b694b7a9c0b065e5dceec661e0497127e8"
2022-02-12 12:25:05 +01:00
dependencies = [
"inlinable_string",
"pear_codegen",
"yansi",
]
[[package]]
name = "pear_codegen"
2023-03-23 16:56:48 +01:00
version = "0.2.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "9661a3a53f93f09f2ea882018e4d7c88f6ff2956d809a276060476fd8c879d3c"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
2023-03-23 16:56:48 +01:00
"proc-macro2-diagnostics 0.10.0",
2022-02-12 12:25:05 +01:00
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "percent-encoding"
2022-10-17 19:53:01 +02:00
version = "2.2.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-02-12 12:25:05 +01:00
2022-02-13 15:38:17 +01:00
[[package]]
name = "phf"
2022-08-12 09:44:15 +02:00
version = "0.11.1"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
2022-02-13 15:38:17 +01:00
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
2022-08-12 09:44:15 +02:00
version = "0.11.1"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
2022-02-13 15:38:17 +01:00
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
2022-08-12 09:44:15 +02:00
version = "0.11.1"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
2022-02-13 15:38:17 +01:00
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_shared"
2022-08-12 09:44:15 +02:00
version = "0.11.1"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
2022-02-13 15:38:17 +01:00
dependencies = [
"siphasher",
"uncased",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "pin-project"
2022-10-17 19:53:01 +02:00
version = "1.0.12"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
2022-02-12 12:25:05 +01:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-10-17 19:53:01 +02:00
version = "1.0.12"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "pin-project-lite"
2022-05-07 20:21:09 +02:00
version = "0.2.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2022-02-12 12:25:05 +01:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.26"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "png"
version = "0.17.7"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638"
2022-02-12 21:08:13 +01:00
dependencies = [
"bitflags",
"crc32fast",
2022-10-17 19:53:01 +02:00
"flate2",
"miniz_oxide",
2022-02-12 21:08:13 +01:00
]
2022-02-12 12:25:05 +01:00
[[package]]
2022-05-10 14:55:57 +02:00
name = "polyval"
2022-10-17 19:53:01 +02:00
version = "0.6.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
2022-05-10 14:55:57 +02:00
dependencies = [
"cfg-if",
2022-05-10 14:55:57 +02:00
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2022-02-12 12:25:05 +01:00
[[package]]
2022-05-10 14:55:57 +02:00
name = "ppv-lite86"
version = "0.2.17"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-02-12 12:25:05 +01:00
[[package]]
name = "proc-macro2"
2023-03-23 16:56:48 +01:00
version = "1.0.53"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-07-17 13:24:56 +02:00
"unicode-ident",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "proc-macro2-diagnostics"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
"version_check",
"yansi",
]
[[package]]
name = "proc-macro2-diagnostics"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "606c4ba35817e2922a308af55ad51bab3645b59eae5c570d4a6cf07e36bd493b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
"version_check",
"yansi",
]
[[package]]
name = "quote"
2023-03-23 16:56:48 +01:00
version = "1.0.26"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2022-02-12 12:25:05 +01:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2022-10-17 19:53:01 +02:00
version = "0.6.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-02-12 12:25:05 +01:00
dependencies = [
"getrandom",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "rayon"
2023-03-23 16:56:48 +01:00
version = "1.7.0"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2022-02-12 21:08:13 +01:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-03-23 16:56:48 +01:00
version = "1.11.0"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2022-02-12 21:08:13 +01:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "redox_syscall"
2022-08-12 09:44:15 +02:00
version = "0.2.16"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-12 09:44:15 +02:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2022-02-12 12:25:05 +01:00
dependencies = [
"bitflags",
]
[[package]]
name = "ref-cast"
2023-03-23 16:56:48 +01:00
version = "1.0.16"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "f43faa91b1c8b36841ee70e97188a869d37ae21759da6846d4be66de5bf7b12c"
2022-02-12 12:25:05 +01:00
dependencies = [
"ref-cast-impl",
]
[[package]]
name = "ref-cast-impl"
2023-03-23 16:56:48 +01:00
version = "1.0.16"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "8d2275aab483050ab2a7364c1a46604865ee7d6906684e08db0f090acf74f9e7"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "regex"
2023-03-23 16:56:48 +01:00
version = "1.7.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c"
2022-02-12 12:25:05 +01:00
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-03-23 16:56:48 +01:00
version = "0.6.29"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "reqwest"
2023-03-23 16:56:48 +01:00
version = "0.11.15"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "0ba30cc2c0cd02af1222ed216ba659cdb2f879dfe3181852fe7c50b1d0005949"
2022-02-12 21:08:13 +01:00
dependencies = [
"base64 0.21.0",
"bytes",
2022-02-12 21:08:13 +01:00
"encoding_rs",
"futures-core",
"futures-util",
"h2",
2022-02-12 21:08:13 +01:00
"http",
"http-body",
"hyper",
"hyper-tls",
2022-02-12 21:08:13 +01:00
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
2022-10-17 19:53:01 +02:00
"once_cell",
2022-02-12 21:08:13 +01:00
"percent-encoding",
"pin-project-lite",
2022-02-12 21:08:13 +01:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2022-02-12 21:08:13 +01:00
"tokio-native-tls",
2022-07-17 13:24:56 +02:00
"tower-service",
2022-02-12 21:08:13 +01:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
2022-02-12 21:08:13 +01:00
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "rocket"
2022-05-10 14:55:57 +02:00
version = "0.5.0-rc.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-10 14:55:57 +02:00
checksum = "98ead083fce4a405feb349cf09abdf64471c6077f14e0ce59364aa90d4b99317"
2022-02-12 12:25:05 +01:00
dependencies = [
"async-stream",
"async-trait",
"atomic",
"atty",
"binascii",
"bytes",
2022-02-12 12:25:05 +01:00
"either",
"figment",
"futures",
"indexmap",
"log",
"memchr",
"multer",
"num_cpus",
"parking_lot",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
"rand",
"ref-cast",
"rocket_codegen",
"rocket_http",
"serde",
"serde_json",
"state",
"tempfile",
2023-03-23 16:56:48 +01:00
"time 0.3.20",
"tokio",
2022-02-12 12:25:05 +01:00
"tokio-stream",
2022-07-17 13:24:56 +02:00
"tokio-util",
2022-02-12 12:25:05 +01:00
"ubyte",
"version_check",
"yansi",
]
[[package]]
name = "rocket_codegen"
2022-05-10 14:55:57 +02:00
version = "0.5.0-rc.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-10 14:55:57 +02:00
checksum = "d6aeb6bb9c61e9cd2c00d70ea267bf36f76a4cc615e5908b349c2f9d93999b47"
2022-02-12 12:25:05 +01:00
dependencies = [
"devise",
"glob",
"indexmap",
"proc-macro2",
"quote",
"rocket_http",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
"unicode-xid",
]
[[package]]
name = "rocket_http"
2022-05-10 14:55:57 +02:00
version = "0.5.0-rc.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-10 14:55:57 +02:00
checksum = "2ded65d127954de3c12471630bf4b81a2792f065984461e65b91d0fdaafc17a2"
2022-02-12 12:25:05 +01:00
dependencies = [
"cookie",
"either",
2022-05-10 14:55:57 +02:00
"futures",
2022-02-12 12:25:05 +01:00
"http",
"hyper",
2022-02-12 12:25:05 +01:00
"indexmap",
"log",
"memchr",
"pear",
"percent-encoding",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
"ref-cast",
"serde",
"smallvec",
"stable-pattern",
"state",
2023-03-23 16:56:48 +01:00
"time 0.3.20",
"tokio",
2022-02-12 12:25:05 +01:00
"uncased",
]
2023-03-23 16:56:48 +01:00
[[package]]
name = "rustix"
version = "0.36.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db4165c9963ab29e422d6c26fbc1d37f15bace6b2810221f9d925023480fcf0e"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys 0.45.0",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "rustversion"
2023-03-23 16:56:48 +01:00
version = "1.0.12"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
2022-02-12 12:25:05 +01:00
[[package]]
name = "ryu"
2023-03-23 16:56:48 +01:00
version = "1.0.13"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2022-02-12 12:25:05 +01:00
[[package]]
name = "schannel"
version = "0.1.21"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2022-02-12 12:25:05 +01:00
dependencies = [
2023-03-23 16:56:48 +01:00
"windows-sys 0.42.0",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "scoped-tls"
version = "1.0.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2022-02-12 12:25:05 +01:00
2022-02-12 21:08:13 +01:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2022-02-12 12:25:05 +01:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-10-17 19:53:01 +02:00
[[package]]
name = "scratch"
2023-03-23 16:56:48 +01:00
version = "1.0.5"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
2022-10-17 19:53:01 +02:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "security-framework"
version = "2.8.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
2022-02-12 12:25:05 +01:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.8.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
2022-02-12 12:25:05 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "serde"
2023-03-23 16:56:48 +01:00
version = "1.0.158"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9"
2022-02-12 12:25:05 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-03-23 16:56:48 +01:00
version = "1.0.158"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "serde_json"
2023-03-23 16:56:48 +01:00
version = "1.0.94"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
2022-02-12 12:25:05 +01:00
dependencies = [
2023-03-23 16:56:48 +01:00
"itoa",
2022-02-12 12:25:05 +01:00
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2023-03-23 16:56:48 +01:00
"itoa",
2022-02-12 12:25:05 +01:00
"ryu",
"serde",
]
[[package]]
2022-05-10 14:55:57 +02:00
name = "sha2"
2022-10-17 19:53:01 +02:00
version = "0.10.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-05-10 14:55:57 +02:00
"cpufeatures",
"digest",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2023-03-23 16:56:48 +01:00
version = "1.4.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-02-12 12:25:05 +01:00
dependencies = [
"libc",
]
2023-03-23 16:56:48 +01:00
[[package]]
name = "simd-adler32"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f"
2022-02-12 12:25:05 +01:00
[[package]]
name = "sinoptik"
2022-07-05 14:42:51 +02:00
version = "0.2.4"
2022-02-12 12:25:05 +01:00
dependencies = [
"assert_float_eq",
"assert_matches",
"cached",
2022-02-12 12:25:05 +01:00
"chrono",
2022-02-13 15:38:17 +01:00
"chrono-tz",
"csv",
2022-02-12 12:25:05 +01:00
"geocoding",
2022-02-12 21:08:13 +01:00
"image",
"reqwest",
2022-02-12 12:25:05 +01:00
"rocket",
"thiserror",
2022-02-12 12:25:05 +01:00
]
2022-02-13 15:38:17 +01:00
[[package]]
name = "siphasher"
2022-05-07 20:21:09 +02:00
version = "0.3.10"
2022-02-13 15:38:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2022-02-13 15:38:17 +01:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "slab"
2023-03-23 16:56:48 +01:00
version = "0.4.8"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-08-12 09:44:15 +02:00
dependencies = [
"autocfg",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "smallvec"
2022-10-17 19:53:01 +02:00
version = "1.10.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-02-12 12:25:05 +01:00
[[package]]
name = "socket2"
2023-03-23 16:56:48 +01:00
version = "0.4.9"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-02-12 12:25:05 +01:00
dependencies = [
"libc",
"winapi",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "spin"
2023-03-23 16:56:48 +01:00
version = "0.9.6"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "b5d6e0250b93c8427a177b849d144a96d5acc57006149479403d7861ab721e34"
2022-02-12 21:08:13 +01:00
dependencies = [
"lock_api",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "stable-pattern"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4564168c00635f88eaed410d5efa8131afa8d8699a612c80c455a0ba05c21045"
dependencies = [
"memchr",
]
[[package]]
name = "state"
2022-05-07 20:21:09 +02:00
version = "0.5.3"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
2022-02-12 12:25:05 +01:00
dependencies = [
"loom",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-05-10 14:55:57 +02:00
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2022-02-12 12:25:05 +01:00
[[package]]
name = "syn"
2023-03-23 16:56:48 +01:00
version = "1.0.109"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2022-07-17 13:24:56 +02:00
"unicode-ident",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "tempfile"
2023-03-23 16:56:48 +01:00
version = "3.4.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
"fastrand",
"redox_syscall",
2023-03-23 16:56:48 +01:00
"rustix",
"windows-sys 0.42.0",
2022-02-12 12:25:05 +01:00
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "termcolor"
version = "1.2.0"
2022-10-17 19:53:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2022-10-17 19:53:01 +02:00
dependencies = [
"winapi-util",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "thiserror"
2023-03-23 16:56:48 +01:00
version = "1.0.40"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2022-02-12 12:25:05 +01:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-03-23 16:56:48 +01:00
version = "1.0.40"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 2.0.8",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "thread_local"
2023-03-23 16:56:48 +01:00
version = "1.1.7"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-02-12 12:25:05 +01:00
dependencies = [
2023-03-23 16:56:48 +01:00
"cfg-if",
2022-02-12 12:25:05 +01:00
"once_cell",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "tiff"
version = "0.8.1"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471"
2022-02-12 21:08:13 +01:00
dependencies = [
"flate2",
2022-05-07 20:21:09 +02:00
"jpeg-decoder",
2022-02-12 21:08:13 +01:00
"weezl",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "time"
version = "0.1.45"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2022-02-12 12:25:05 +01:00
dependencies = [
"libc",
2022-05-07 20:21:09 +02:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "time"
2023-03-23 16:56:48 +01:00
version = "0.3.20"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
2022-02-12 12:25:05 +01:00
dependencies = [
2023-03-23 16:56:48 +01:00
"itoa",
"serde",
"time-core",
2022-02-12 12:25:05 +01:00
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-02-12 12:25:05 +01:00
[[package]]
name = "time-macros"
2023-03-23 16:56:48 +01:00
version = "0.2.8"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
dependencies = [
"time-core",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "tinyvec"
2022-05-07 20:21:09 +02:00
version = "1.6.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2022-02-12 12:25:05 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-03-23 16:56:48 +01:00
version = "0.1.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-02-12 12:25:05 +01:00
[[package]]
name = "tokio"
2023-03-23 16:56:48 +01:00
version = "1.26.0"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-07-17 13:24:56 +02:00
"autocfg",
"bytes",
2022-02-12 12:25:05 +01:00
"libc",
"memchr",
"mio",
2022-02-12 12:25:05 +01:00
"num_cpus",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
"signal-hook-registry",
"socket2",
2022-02-12 12:25:05 +01:00
"tokio-macros",
2023-03-23 16:56:48 +01:00
"windows-sys 0.45.0",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "tokio-macros"
version = "1.8.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "tokio-native-tls"
2023-03-23 16:56:48 +01:00
version = "0.3.1"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2022-02-12 21:08:13 +01:00
dependencies = [
"native-tls",
"tokio",
2022-02-12 21:08:13 +01:00
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "tokio-stream"
2023-03-23 16:56:48 +01:00
version = "0.1.12"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
2022-02-12 12:25:05 +01:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
2022-05-07 20:21:09 +02:00
]
[[package]]
name = "tokio-util"
2023-03-23 16:56:48 +01:00
version = "0.7.7"
2022-05-07 20:21:09 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
2022-05-07 20:21:09 +02:00
dependencies = [
"bytes",
2022-05-07 20:21:09 +02:00
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-05-07 20:21:09 +02:00
"tracing",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "toml"
version = "0.5.11"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-02-12 12:25:05 +01:00
dependencies = [
"serde",
]
[[package]]
name = "tower-service"
2022-07-17 13:24:56 +02:00
version = "0.3.2"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2022-02-12 12:25:05 +01:00
[[package]]
name = "tracing"
2022-10-17 19:53:01 +02:00
version = "0.1.37"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
"pin-project-lite",
2022-02-12 12:25:05 +01:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2022-10-17 19:53:01 +02:00
version = "0.1.23"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "tracing-core"
2022-10-17 19:53:01 +02:00
version = "0.1.30"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2022-02-12 12:25:05 +01:00
dependencies = [
2022-07-17 13:24:56 +02:00
"once_cell",
2022-02-12 12:25:05 +01:00
"valuable",
]
[[package]]
name = "tracing-log"
2022-05-07 20:21:09 +02:00
version = "0.1.3"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2022-02-12 12:25:05 +01:00
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-10-17 19:53:01 +02:00
version = "0.3.16"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
2022-02-12 12:25:05 +01:00
dependencies = [
"matchers",
2022-10-17 19:53:01 +02:00
"nu-ansi-term",
2022-07-17 13:24:56 +02:00
"once_cell",
2022-02-12 12:25:05 +01:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
version = "0.2.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-02-12 12:25:05 +01:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "typenum"
version = "1.16.0"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-05-10 14:55:57 +02:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "ubyte"
2022-10-17 19:53:01 +02:00
version = "0.10.3"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "c81f0dae7d286ad0d9366d7679a77934cfc3cf3a8d67e82669794412b2368fe6"
2022-02-12 12:25:05 +01:00
dependencies = [
"serde",
]
[[package]]
name = "uncased"
2022-07-17 13:24:56 +02:00
version = "0.9.7"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
2022-02-12 12:25:05 +01:00
dependencies = [
"serde",
"version_check",
]
[[package]]
name = "unicode-bidi"
2023-03-23 16:56:48 +01:00
version = "0.3.13"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-02-12 12:25:05 +01:00
2022-07-17 13:24:56 +02:00
[[package]]
name = "unicode-ident"
2023-03-23 16:56:48 +01:00
version = "1.0.8"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-07-17 13:24:56 +02:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "unicode-normalization"
2022-10-17 19:53:01 +02:00
version = "0.1.22"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2022-02-12 12:25:05 +01:00
dependencies = [
"tinyvec",
]
2022-10-17 19:53:01 +02:00
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2022-02-12 12:25:05 +01:00
[[package]]
name = "unicode-xid"
2022-10-17 19:53:01 +02:00
version = "0.2.4"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2022-02-12 12:25:05 +01:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "universal-hash"
2022-10-17 19:53:01 +02:00
version = "0.5.0"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
2022-05-10 14:55:57 +02:00
dependencies = [
2022-10-17 19:53:01 +02:00
"crypto-common",
2022-05-10 14:55:57 +02:00
"subtle",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "url"
2022-10-17 19:53:01 +02:00
version = "2.3.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 19:53:01 +02:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2022-02-12 12:25:05 +01:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2022-05-07 20:21:09 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-02-12 12:25:05 +01:00
[[package]]
name = "wasm-bindgen"
2023-03-23 16:56:48 +01:00
version = "0.2.84"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-03-23 16:56:48 +01:00
version = "0.2.84"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
2022-02-12 12:25:05 +01:00
dependencies = [
"bumpalo",
"log",
2022-08-12 09:44:15 +02:00
"once_cell",
2022-02-12 12:25:05 +01:00
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-03-23 16:56:48 +01:00
version = "0.4.34"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
2022-02-12 12:25:05 +01:00
dependencies = [
"cfg-if",
2022-02-12 12:25:05 +01:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-03-23 16:56:48 +01:00
version = "0.2.84"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
2022-02-12 12:25:05 +01:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-03-23 16:56:48 +01:00
version = "0.2.84"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
2022-02-12 12:25:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-23 16:56:48 +01:00
"syn 1.0.109",
2022-02-12 12:25:05 +01:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-03-23 16:56:48 +01:00
version = "0.2.84"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
2022-02-12 12:25:05 +01:00
[[package]]
name = "web-sys"
2023-03-23 16:56:48 +01:00
version = "0.3.61"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
2022-02-12 12:25:05 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-02-12 21:08:13 +01:00
[[package]]
name = "weezl"
2022-07-17 13:24:56 +02:00
version = "0.1.7"
2022-02-12 21:08:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 13:24:56 +02:00
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
2022-02-12 21:08:13 +01:00
2022-02-12 12:25:05 +01:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2022-10-17 19:53:01 +02:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2022-02-12 12:25:05 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-07-17 13:24:56 +02:00
[[package]]
name = "windows"
2023-03-23 16:56:48 +01:00
version = "0.44.0"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b"
2022-07-17 13:24:56 +02:00
dependencies = [
2023-03-23 16:56:48 +01:00
"windows-targets",
]
[[package]]
name = "windows"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25"
dependencies = [
"windows-targets",
2022-07-17 13:24:56 +02:00
]
2022-05-10 14:55:57 +02:00
[[package]]
name = "windows-sys"
version = "0.42.0"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-05-10 14:55:57 +02:00
dependencies = [
"windows_aarch64_gnullvm",
2023-03-23 16:56:48 +01:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
2023-03-23 16:56:48 +01:00
"windows_x86_64_msvc",
2022-05-10 14:55:57 +02:00
]
[[package]]
2023-03-23 16:56:48 +01:00
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
2022-07-17 13:24:56 +02:00
[[package]]
2023-03-23 16:56:48 +01:00
name = "windows-targets"
version = "0.42.2"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2022-07-17 13:24:56 +02:00
2022-05-10 14:55:57 +02:00
[[package]]
2023-03-23 16:56:48 +01:00
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-05-10 14:55:57 +02:00
2022-07-17 13:24:56 +02:00
[[package]]
2023-03-23 16:56:48 +01:00
name = "windows_aarch64_msvc"
version = "0.42.2"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-07-17 13:24:56 +02:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "windows_i686_gnu"
2023-03-23 16:56:48 +01:00
version = "0.42.2"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-07-17 13:24:56 +02:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "windows_i686_msvc"
2023-03-23 16:56:48 +01:00
version = "0.42.2"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-07-17 13:24:56 +02:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-23 16:56:48 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-23 16:56:48 +01:00
version = "0.42.2"
2022-07-17 13:24:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-07-17 13:24:56 +02:00
2022-05-10 14:55:57 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-23 16:56:48 +01:00
version = "0.42.2"
2022-05-10 14:55:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 16:56:48 +01:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-05-10 14:55:57 +02:00
2022-05-07 20:21:09 +02:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
2022-02-12 12:25:05 +01:00
]
[[package]]
name = "yansi"
2022-05-07 20:21:09 +02:00
version = "0.5.1"
2022-02-12 12:25:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 20:21:09 +02:00
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2023-03-23 16:56:48 +01:00
[[package]]
name = "zune-inflate"
version = "0.2.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10ca8ee3897e213bf74d46641942575fb9b4bd9933cbce0b40eb320836da67e0"
dependencies = [
"simd-adler32",
]