|
@@ -108,6 +108,12 @@ version = "0.13.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "base64ct"
|
|
|
+version = "1.0.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "bit_field"
|
|
|
version = "0.10.1"
|
|
@@ -227,6 +233,9 @@ name = "cc"
|
|
|
version = "1.0.73"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
|
|
+dependencies = [
|
|
|
+ "jobserver",
|
|
|
+]
|
|
|
|
|
|
[[package]]
|
|
|
name = "cfg-if"
|
|
@@ -340,6 +349,12 @@ dependencies = [
|
|
|
"winapi 0.3.9",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "constant_time_eq"
|
|
|
+version = "0.1.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "convert_case"
|
|
|
version = "0.4.0"
|
|
@@ -1134,6 +1149,15 @@ version = "1.0.1"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "jobserver"
|
|
|
+version = "0.1.24"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
|
|
+dependencies = [
|
|
|
+ "libc",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "jpeg-decoder"
|
|
|
version = "0.1.22"
|
|
@@ -1712,6 +1736,17 @@ dependencies = [
|
|
|
"winapi 0.3.9",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "password-hash"
|
|
|
+version = "0.3.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
|
|
|
+dependencies = [
|
|
|
+ "base64ct",
|
|
|
+ "rand_core 0.6.3",
|
|
|
+ "subtle",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "pbkdf2"
|
|
|
version = "0.10.1"
|
|
@@ -1719,6 +1754,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
|
|
|
dependencies = [
|
|
|
"digest 0.10.3",
|
|
|
+ "hmac",
|
|
|
+ "password-hash",
|
|
|
+ "sha2",
|
|
|
]
|
|
|
|
|
|
[[package]]
|
|
@@ -2133,9 +2171,9 @@ dependencies = [
|
|
|
|
|
|
[[package]]
|
|
|
name = "regex"
|
|
|
-version = "1.5.4"
|
|
|
+version = "1.5.5"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
-checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
|
|
|
+checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
|
|
|
dependencies = [
|
|
|
"aho-corasick",
|
|
|
"memchr",
|
|
@@ -2475,6 +2513,17 @@ dependencies = [
|
|
|
"sha1_smol",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "sha1"
|
|
|
+version = "0.10.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if 1.0.0",
|
|
|
+ "cpufeatures",
|
|
|
+ "digest 0.10.3",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "sha1_smol"
|
|
|
version = "1.0.0"
|
|
@@ -2853,8 +2902,15 @@ dependencies = [
|
|
|
"itoa 1.0.1",
|
|
|
"libc",
|
|
|
"num_threads",
|
|
|
+ "time-macros",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "time-macros"
|
|
|
+version = "0.2.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "tinyvec"
|
|
|
version = "1.5.1"
|
|
@@ -3016,7 +3072,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
|
|
dependencies = [
|
|
|
"getrandom 0.2.5",
|
|
|
- "sha1",
|
|
|
+ "sha1 0.6.1",
|
|
|
]
|
|
|
|
|
|
[[package]]
|
|
@@ -3293,14 +3349,48 @@ checksum = "50344758e2f40e3a1fcfc8f6f91aa57b5f8ebd8d27919fe6451f15aaaf9ee608"
|
|
|
|
|
|
[[package]]
|
|
|
name = "zip"
|
|
|
-version = "0.5.13"
|
|
|
+version = "0.6.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
-checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
|
|
|
+checksum = "e6fa4aa90e99fb8d701bda16fb040d8ed2f9c7176fb44de750e880a74b580315"
|
|
|
dependencies = [
|
|
|
+ "aes",
|
|
|
"byteorder",
|
|
|
"bzip2",
|
|
|
+ "constant_time_eq",
|
|
|
"crc32fast",
|
|
|
"flate2",
|
|
|
- "thiserror",
|
|
|
- "time 0.1.43",
|
|
|
+ "hmac",
|
|
|
+ "pbkdf2",
|
|
|
+ "sha1 0.10.1",
|
|
|
+ "time 0.3.7",
|
|
|
+ "zstd",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "zstd"
|
|
|
+version = "0.10.0+zstd.1.5.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "3b1365becbe415f3f0fcd024e2f7b45bacfb5bdd055f0dc113571394114e7bdd"
|
|
|
+dependencies = [
|
|
|
+ "zstd-safe",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "zstd-safe"
|
|
|
+version = "4.1.4+zstd.1.5.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "2f7cd17c9af1a4d6c24beb1cc54b17e2ef7b593dc92f19e9d9acad8b182bbaee"
|
|
|
+dependencies = [
|
|
|
+ "libc",
|
|
|
+ "zstd-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "zstd-sys"
|
|
|
+version = "1.6.3+zstd.1.5.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
|
|
|
+dependencies = [
|
|
|
+ "cc",
|
|
|
+ "libc",
|
|
|
]
|