diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-09-08 02:03:12 +0400 | 
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-09-08 02:03:12 +0400 | 
| commit | 893432ca9b24343fc897398aaf46e9866cb92ac9 (patch) | |
| tree | a61c465049ee9718ccc66debfd291989c0b1fad0 /Cargo.lock | |
| parent | 91f9396d8232af25beef2bfde184fba841dd5dcb (diff) | |
cargo
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 524 | 
1 files changed, 514 insertions, 10 deletions
@@ -3,6 +3,12 @@  version = 3  [[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]]  name = "aho-corasick"  version = "0.7.18"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -24,6 +30,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"  [[package]] +name = "async-channel" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319" +dependencies = [ + "concurrent-queue", + "event-listener", + "futures-core", +] + +[[package]] +name = "async-nats" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dae854440faecce70f0664f41f09a588de1e7a4366931ec3962ded3d8f903c5" +dependencies = [ + "blocking", + "nats", +] + +[[package]]  name = "async-stream"  version = "0.3.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -45,6 +72,12 @@ dependencies = [  ]  [[package]] +name = "async-task" +version = "4.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" + +[[package]]  name = "async-trait"  version = "0.1.51"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -56,6 +89,12 @@ dependencies = [  ]  [[package]] +name = "atomic-waker" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" + +[[package]]  name = "atty"  version = "0.2.14"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -79,6 +118,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"  [[package]] +name = "base64-url" +version = "1.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44265cf903f576fcaa1c2f23b32ec2dadaa8ec9d6b7c6212704d72a417bfbeef" +dependencies = [ + "base64", +] + +[[package]]  name = "bitflags"  version = "1.3.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -94,6 +142,20 @@ dependencies = [  ]  [[package]] +name = "blocking" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9" +dependencies = [ + "async-channel", + "async-task", + "atomic-waker", + "fastrand", + "futures-lite", + "once_cell", +] + +[[package]]  name = "bumpalo"  version = "3.7.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -112,6 +174,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"  [[package]] +name = "cache-padded" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" + +[[package]]  name = "cc"  version = "1.0.70"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -124,6 +192,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"  [[package]] +name = "concurrent-queue" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3" +dependencies = [ + "cache-padded", +] + +[[package]]  name = "config"  version = "0.11.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -140,6 +217,22 @@ dependencies = [  ]  [[package]] +name = "core-foundation" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" + +[[package]]  name = "cpufeatures"  version = "0.2.1"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -149,6 +242,54 @@ dependencies = [  ]  [[package]] +name = "crc32fast" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +dependencies = [ + "cfg-if", + "lazy_static", +] + +[[package]] +name = "curve25519-dalek" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" +dependencies = [ + "byteorder", + "digest", + "rand_core 0.5.1", + "subtle", + "zeroize", +] + +[[package]] +name = "data-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" + +[[package]]  name = "digest"  version = "0.9.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -158,6 +299,27 @@ dependencies = [  ]  [[package]] +name = "ed25519" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4620d40f6d2601794401d6dd95a5cf69b6c157852539470eeda433a99b3c0efc" +dependencies = [ + "signature", +] + +[[package]] +name = "ed25519-dalek" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" +dependencies = [ + "curve25519-dalek", + "ed25519", + "sha2", + "zeroize", +] + +[[package]]  name = "either"  version = "1.6.1"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -177,12 +339,39 @@ dependencies = [  ]  [[package]] +name = "event-listener" +version = "2.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59" + +[[package]] +name = "fastrand" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b394ed3d285a429378d3b384b9eb1285267e7df4b166df24b7a6939a04dc392e" +dependencies = [ + "instant", +] + +[[package]]  name = "fixedbitset"  version = "0.2.0"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"  [[package]] +name = "flate2" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80edafed416a46fb378521624fab1cfa2eb514784fd8921adbe8a8d8321da811" +dependencies = [ + "cfg-if", + "crc32fast", + "libc", + "miniz_oxide", +] + +[[package]]  name = "fnv"  version = "1.0.7"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -214,6 +403,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"  [[package]] +name = "futures-io" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" + +[[package]] +name = "futures-lite" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + +[[package]]  name = "futures-macro"  version = "0.3.17"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -260,7 +470,9 @@ dependencies = [  name = "gateway"  version = "0.1.0"  dependencies = [ + "async-nats",   "async-stream", + "flate2",   "futures-core",   "futures-util",   "log", @@ -286,13 +498,24 @@ dependencies = [  [[package]]  name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom"  version = "0.2.3"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"  dependencies = [   "cfg-if",   "libc", - "wasi", + "wasi 0.10.2+wasi-snapshot-preview1",  ]  [[package]] @@ -478,6 +701,12 @@ dependencies = [  ]  [[package]] +name = "json" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" + +[[package]]  name = "lazy_static"  version = "1.4.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -551,6 +780,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"  [[package]] +name = "miniz_oxide" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" +dependencies = [ + "adler", + "autocfg", +] + +[[package]]  name = "mio"  version = "0.7.13"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -579,6 +818,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"  [[package]] +name = "nats" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c0cfa3903c3e613edddaa4a2f86b2053a1d6fbcf315a3ff352c25ba9f0a8585" +dependencies = [ + "base64", + "base64-url", + "crossbeam-channel", + "fastrand", + "itoa", + "json", + "libc", + "log", + "memchr", + "nkeys", + "nuid", + "once_cell", + "parking_lot", + "regex", + "rustls", + "rustls-native-certs", + "webpki", + "winapi", +] + +[[package]] +name = "nkeys" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1a98f0a974ff737974b57ba1c71d2e0fe7ec18e5a828d4b8e02683171349dfa" +dependencies = [ + "byteorder", + "data-encoding", + "ed25519-dalek", + "log", + "rand 0.7.3", + "signatory", +] + +[[package]]  name = "nom"  version = "5.1.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -606,6 +885,16 @@ dependencies = [  ]  [[package]] +name = "nuid" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7000c9392b545c4ba43e8abc086bf7d01cd2948690934c16980170b0549a2bd3" +dependencies = [ + "lazy_static", + "rand 0.8.4", +] + +[[package]]  name = "num-traits"  version = "0.1.43"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -646,6 +935,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"  [[package]] +name = "openssl-probe" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" + +[[package]] +name = "parking" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" + +[[package]]  name = "parking_lot"  version = "0.11.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -829,14 +1130,37 @@ dependencies = [  [[package]]  name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc 0.2.0", +] + +[[package]] +name = "rand"  version = "0.8.4"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"  dependencies = [   "libc", - "rand_chacha", - "rand_core", - "rand_hc", + "rand_chacha 0.3.1", + "rand_core 0.6.3", + "rand_hc 0.3.1", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1",  ]  [[package]] @@ -846,7 +1170,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"  dependencies = [   "ppv-lite86", - "rand_core", + "rand_core 0.6.3", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16",  ]  [[package]] @@ -855,7 +1188,16 @@ version = "0.6.3"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"  dependencies = [ - "getrandom", + "getrandom 0.2.3", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1",  ]  [[package]] @@ -864,7 +1206,7 @@ version = "0.3.1"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"  dependencies = [ - "rand_core", + "rand_core 0.6.3",  ]  [[package]] @@ -947,6 +1289,18 @@ dependencies = [  ]  [[package]] +name = "rustls-native-certs" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" +dependencies = [ + "openssl-probe", + "rustls", + "schannel", + "security-framework", +] + +[[package]]  name = "ryu"  version = "1.0.5"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -962,6 +1316,16 @@ dependencies = [  ]  [[package]] +name = "schannel" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" +dependencies = [ + "lazy_static", + "winapi", +] + +[[package]]  name = "scopeguard"  version = "1.1.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -978,6 +1342,29 @@ dependencies = [  ]  [[package]] +name = "security-framework" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]]  name = "serde"  version = "0.8.23"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1051,6 +1438,19 @@ dependencies = [  ]  [[package]] +name = "sha2" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9204c41a1597a8c5af23c82d1c921cb01ec0a4c59e07a9c7306062829a3903f3" +dependencies = [ + "block-buffer", + "cfg-if", + "cpufeatures", + "digest", + "opaque-debug", +] + +[[package]]  name = "signal-hook-registry"  version = "1.4.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1060,6 +1460,24 @@ dependencies = [  ]  [[package]] +name = "signatory" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9eaebd4be561a7d8148803baa108092f85090189c4b8c3ffb81602b15b5c1771" +dependencies = [ + "getrandom 0.1.16", + "signature", + "subtle-encoding", + "zeroize", +] + +[[package]] +name = "signature" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c19772be3c4dd2ceaacf03cb41d5885f2a02c4d8804884918e3a258480803335" + +[[package]]  name = "slab"  version = "0.4.4"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1094,6 +1512,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"  [[package]] +name = "subtle" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" + +[[package]] +name = "subtle-encoding" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dcb1ed7b8330c5eed5441052651dd7a12c75e2ed88f2ec024ae1fa3a5e59945" +dependencies = [ + "zeroize", +] + +[[package]]  name = "syn"  version = "1.0.76"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1105,6 +1538,18 @@ dependencies = [  ]  [[package]] +name = "synstructure" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "474aaa926faa1603c40b7885a9eaea29b444d1cb2850cb7c0e37bb1a4182f4fa" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "unicode-xid", +] + +[[package]]  name = "tempfile"  version = "3.2.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1112,7 +1557,7 @@ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"  dependencies = [   "cfg-if",   "libc", - "rand", + "rand 0.8.4",   "redox_syscall",   "remove_dir_all",   "winapi", @@ -1204,6 +1649,17 @@ dependencies = [  ]  [[package]] +name = "tokio-rustls" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" +dependencies = [ + "rustls", + "tokio", + "webpki", +] + +[[package]]  name = "tokio-stream"  version = "0.1.7"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1225,7 +1681,10 @@ dependencies = [   "pin-project",   "rustls",   "tokio", + "tokio-rustls",   "tungstenite", + "webpki", + "webpki-roots",  ]  [[package]] @@ -1304,7 +1763,7 @@ dependencies = [   "futures-util",   "indexmap",   "pin-project", - "rand", + "rand 0.8.4",   "slab",   "tokio",   "tokio-stream", @@ -1387,11 +1846,14 @@ dependencies = [   "http",   "httparse",   "log", - "rand", + "rand 0.8.4", + "rustls", + "rustls-native-certs",   "sha-1",   "thiserror",   "url",   "utf-8", + "webpki",  ]  [[package]] @@ -1458,6 +1920,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"  [[package]] +name = "waker-fn" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + +[[package]]  name = "walkdir"  version = "2.3.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1480,6 +1948,12 @@ dependencies = [  [[package]]  name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi"  version = "0.10.2+wasi-snapshot-preview1"  source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" @@ -1574,6 +2048,15 @@ dependencies = [  ]  [[package]] +name = "webpki-roots" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" +dependencies = [ + "webpki", +] + +[[package]]  name = "which"  version = "4.2.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1623,3 +2106,24 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"  dependencies = [   "linked-hash-map",  ] + +[[package]] +name = "zeroize" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "377db0846015f7ae377174787dd452e1c5f5a9050bc6f954911d01f116daa0cd" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2c1e130bebaeab2f23886bf9acbaca14b092408c452543c857f66399cd6dab1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +]  | 
