Cargo.lock 430 KiB
Newer Older
Alexander's avatar
Alexander committed
 "proc-macro2",
 "quote",
 "syn 1.0.109",
]

[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"

[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
 "strum_macros",
]

[[package]]
name = "strum_macros"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
dependencies = [
 "heck",
 "proc-macro2",
 "quote",
 "rustversion",
 "syn 1.0.109",
]

[[package]]
name = "stun"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25"
dependencies = [
 "base64 0.13.1",
 "crc",
 "lazy_static",
 "md-5",
 "rand 0.8.5",
 "ring 0.16.20",
 "subtle",
 "thiserror",
 "tokio",
 "url",
 "webrtc-util",
]

[[package]]
name = "sub-tokens"
version = "0.1.0"
source = "git+https://github.com/paritytech/substrate-debug-kit?branch=master#e12503ab781e913735dc389865a3b8b4a6c6399d"
dependencies = [
 "separator",
]

[[package]]
name = "subkey"
version = "3.0.0"
dependencies = [
Alexander's avatar
Alexander committed
 "sc-cli",
]

[[package]]
name = "substrate-bip39"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49eee6965196b32f882dd2ee85a92b1dbead41b04e53907f269de3b0dc04733c"
dependencies = [
 "hmac 0.11.0",
 "pbkdf2 0.8.0",
 "schnorrkel 0.9.1",
 "sha2 0.9.9",
 "zeroize",
]

[[package]]
name = "substrate-build-script-utils"
version = "3.0.0"

[[package]]
name = "substrate-cli-test-utils"
version = "0.1.0"
dependencies = [
 "assert_cmd",
 "futures",
 "nix 0.26.2",
 "node-cli",
 "node-primitives",
 "regex",
 "sc-cli",
 "sc-service",
 "sp-rpc",
 "substrate-rpc-client",
 "tokio",
]

[[package]]
name = "substrate-frame-cli"
version = "4.0.0-dev"
dependencies = [
Alexander's avatar
Alexander committed
18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455
 "frame-support",
 "frame-system",
 "sc-cli",
 "sp-core",
 "sp-runtime",
]

[[package]]
name = "substrate-frame-rpc-support"
version = "3.0.0"
dependencies = [
 "frame-support",
 "frame-system",
 "jsonrpsee",
 "parity-scale-codec",
 "sc-rpc-api",
 "scale-info",
 "serde",
 "sp-core",
 "sp-runtime",
 "sp-storage",
 "tokio",
]

[[package]]
name = "substrate-frame-rpc-system"
version = "4.0.0-dev"
dependencies = [
 "assert_matches",
 "frame-system-rpc-runtime-api",
 "futures",
 "jsonrpsee",
 "log",
 "parity-scale-codec",
 "sc-rpc-api",
 "sc-transaction-pool",
 "sc-transaction-pool-api",
 "sp-api",
 "sp-block-builder",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "sp-tracing",
 "substrate-test-runtime-client",
 "tokio",
]

[[package]]
name = "substrate-prometheus-endpoint"
version = "0.10.0-dev"
dependencies = [
 "hyper",
 "log",
 "prometheus",
 "thiserror",
 "tokio",
]

[[package]]
name = "substrate-rpc-client"
version = "0.10.0-dev"
dependencies = [
 "async-trait",
 "jsonrpsee",
 "log",
 "sc-rpc-api",
 "serde",
 "sp-core",
 "sp-runtime",
 "tokio",
]

[[package]]
name = "substrate-state-trie-migration-rpc"
version = "4.0.0-dev"
dependencies = [
 "jsonrpsee",
 "parity-scale-codec",
 "sc-client-api",
 "sc-rpc-api",
 "serde",
 "serde_json",
 "sp-core",
 "sp-runtime",
 "sp-state-machine",
 "sp-trie",
 "trie-db",
]

[[package]]
name = "substrate-test-client"
version = "2.0.1"
dependencies = [
 "array-bytes",
 "async-trait",
 "futures",
 "parity-scale-codec",
 "sc-client-api",
 "sc-client-db",
 "sc-consensus",
 "sc-executor",
 "sc-offchain",
 "sc-service",
 "serde",
 "serde_json",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-keyring",
 "sp-keystore",
 "sp-runtime",
 "sp-state-machine",
]

[[package]]
name = "substrate-test-runtime"
version = "2.0.0"
dependencies = [
 "array-bytes",
 "frame-executive",
 "frame-support",
 "frame-system",
 "frame-system-rpc-runtime-api",
 "futures",
 "json-patch",
 "log",
 "pallet-babe",
 "pallet-balances",
 "pallet-timestamp",
 "parity-scale-codec",
 "sc-block-builder",
 "sc-executor",
 "sc-executor-common",
 "sc-service",
 "scale-info",
 "serde",
 "serde_json",
 "sp-api",
 "sp-application-crypto",
 "sp-block-builder",
 "sp-consensus",
 "sp-consensus-aura",
 "sp-consensus-babe",
 "sp-consensus-grandpa",
 "sp-core",
 "sp-externalities",
 "sp-genesis-builder",
 "sp-inherents",
 "sp-io",
 "sp-keyring",
 "sp-offchain",
 "sp-runtime",
 "sp-session",
 "sp-state-machine",
 "sp-std",
 "sp-tracing",
 "sp-transaction-pool",
 "sp-trie",
 "sp-version",
 "substrate-test-runtime-client",
 "substrate-wasm-builder",
 "trie-db",
]

[[package]]
name = "substrate-test-runtime-client"
version = "2.0.0"
dependencies = [
 "futures",
 "sc-block-builder",
 "sc-client-api",
 "sc-consensus",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-runtime",
 "substrate-test-client",
 "substrate-test-runtime",
]

[[package]]
name = "substrate-test-runtime-transaction-pool"
version = "2.0.0"
dependencies = [
 "futures",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "sc-transaction-pool",
 "sc-transaction-pool-api",
 "sp-blockchain",
 "sp-runtime",
 "substrate-test-runtime-client",
 "thiserror",
]

[[package]]
name = "substrate-test-utils"
version = "4.0.0-dev"
dependencies = [
 "futures",
 "sc-service",
 "tokio",
 "trybuild",
]

[[package]]
name = "substrate-wasm-builder"
version = "5.0.0-dev"
dependencies = [
 "ansi_term",
 "build-helper",
 "cargo_metadata",
 "filetime",
 "parity-wasm",
 "sp-maybe-compressed-blob",
 "strum",
 "tempfile",
 "toml 0.7.6",
 "walkdir",
 "wasm-opt",
]

[[package]]
name = "substring"
version = "1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86"
dependencies = [
 "autocfg",
]

[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"

[[package]]
name = "subtle-ng"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"

[[package]]
name = "sval"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b031320a434d3e9477ccf9b5756d57d4272937b8d22cb88af80b7633a1b78b1"

[[package]]
name = "sval_buffer"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bf7e9412af26b342f3f2cc5cc4122b0105e9d16eb76046cd14ed10106cf6028"
dependencies = [
 "sval",
 "sval_ref",
]

[[package]]
name = "sval_dynamic"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0ef628e8a77a46ed3338db8d1b08af77495123cc229453084e47cd716d403cf"
dependencies = [
 "sval",
]

[[package]]
name = "sval_fmt"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dc09e9364c2045ab5fa38f7b04d077b3359d30c4c2b3ec4bae67a358bd64326"
dependencies = [
 "itoa",
 "ryu",
 "sval",
]

[[package]]
name = "sval_json"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ada6f627e38cbb8860283649509d87bc4a5771141daa41c78fd31f2b9485888d"
dependencies = [
 "itoa",
 "ryu",
 "sval",
]

[[package]]
name = "sval_ref"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "703ca1942a984bd0d9b5a4c0a65ab8b4b794038d080af4eb303c71bc6bf22d7c"
dependencies = [
 "sval",
]

[[package]]
name = "sval_serde"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830926cd0581f7c3e5d51efae4d35c6b6fc4db583842652891ba2f1bed8db046"
dependencies = [
 "serde",
 "sval",
 "sval_buffer",
 "sval_fmt",
]

[[package]]
name = "symbolic-common"
version = "12.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167a4ffd7c35c143fd1030aa3c2caf76ba42220bd5a6b5f4781896434723b8c3"
dependencies = [
 "debugid",
 "memmap2",
 "stable_deref_trait",
 "uuid",
]

[[package]]
name = "symbolic-demangle"
version = "12.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e378c50e80686c1c5c205674e1f86a2858bec3d2a7dfdd690331a8a19330f293"
dependencies = [
 "cpp_demangle 0.4.3",
 "rustc-demangle",
 "symbolic-common",
]

[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

[[package]]
name = "syn"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398"
Alexander's avatar
Alexander committed
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

[[package]]
name = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 1.0.109",
 "unicode-xid",
]

[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
 "bitflags 1.3.2",
 "core-foundation",
 "system-configuration-sys",
]

[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"

[[package]]
name = "tar"
version = "0.4.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
dependencies = [
 "filetime",
 "libc",
 "xattr",
]

[[package]]
name = "target-lexicon"
version = "0.12.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"

[[package]]
name = "tempfile"
version = "3.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
dependencies = [
 "cfg-if",
 "fastrand 2.0.0",
 "redox_syscall 0.3.5",
 "rustix 0.38.8",
 "windows-sys 0.48.0",
]

[[package]]
name = "termcolor"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
 "winapi-util",
]

[[package]]
name = "termtree"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"

[[package]]
name = "test-parachain-adder"
version = "1.0.0"
dependencies = [
 "dlmalloc",
 "parity-scale-codec",
Alexander's avatar
Alexander committed
 "sp-io",
 "sp-std",
 "substrate-wasm-builder",
 "tiny-keccak",
]

[[package]]
name = "test-parachain-adder-collator"
version = "1.0.0"
dependencies = [
Alexander's avatar
Alexander committed
 "futures",
 "futures-timer",
 "log",
 "parity-scale-codec",
 "polkadot-cli",
 "polkadot-node-core-pvf",
 "polkadot-node-primitives",
 "polkadot-node-subsystem",
Alexander's avatar
Alexander committed
 "polkadot-primitives",
 "polkadot-service",
 "polkadot-test-service",
 "sc-cli",
 "sc-service",
 "sp-core",
 "sp-keyring",
 "substrate-test-utils",
 "test-parachain-adder",
 "test-parachain-adder-collator",
 "tokio",
]

[[package]]
name = "test-parachain-halt"
version = "1.0.0"
dependencies = [
 "rustversion",
 "substrate-wasm-builder",
]

[[package]]
name = "test-parachain-undying"
version = "1.0.0"
dependencies = [
 "dlmalloc",
 "log",
 "parity-scale-codec",
Alexander's avatar
Alexander committed
 "sp-io",
 "sp-std",
 "substrate-wasm-builder",
 "tiny-keccak",
]

[[package]]
name = "test-parachain-undying-collator"
version = "1.0.0"
dependencies = [
Alexander's avatar
Alexander committed
 "futures",
 "futures-timer",
 "log",
 "parity-scale-codec",
 "polkadot-cli",
 "polkadot-node-core-pvf",
 "polkadot-node-primitives",
 "polkadot-node-subsystem",
Alexander's avatar
Alexander committed
 "polkadot-primitives",
 "polkadot-service",
 "polkadot-test-service",
 "sc-cli",
 "sc-service",
 "sp-core",
 "sp-keyring",
 "substrate-test-utils",
 "test-parachain-undying",
 "test-parachain-undying-collator",
 "tokio",
]

[[package]]
name = "test-parachains"
version = "1.0.0"
dependencies = [
 "parity-scale-codec",
 "sp-core",
 "test-parachain-adder",
 "test-parachain-halt",
 "tiny-keccak",
]

[[package]]
name = "test-runtime-constants"
version = "1.0.0"
dependencies = [
 "frame-support",
 "polkadot-primitives",
 "polkadot-runtime-common",
 "smallvec",
 "sp-core",
 "sp-runtime",
 "sp-weights",
]

[[package]]
name = "textwrap"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"

[[package]]
name = "thiserror"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
Alexander's avatar
Alexander committed
dependencies = [
 "thiserror-impl",
]

[[package]]
name = "thiserror-core"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d97345f6437bb2004cd58819d8a9ef8e36cdd7661c2abc4bbde0a7c40d9f497"
dependencies = [
 "thiserror-core-impl",
]

[[package]]
name = "thiserror-core-impl"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10ac1c5050e43014d16b2f94d0d2ce79e65ffdd8b38d8048f9c8f6a8a6da62ac"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 1.0.109",
]

[[package]]
name = "thiserror-impl"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
Alexander's avatar
Alexander committed
dependencies = [
 "proc-macro2",
 "quote",
Alexander's avatar
Alexander committed
]

[[package]]
name = "thousands"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"

[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
 "cfg-if",
 "once_cell",
]

[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
 "num_cpus",
]

[[package]]
name = "thrift"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b82ca8f46f95b3ce96081fe3dd89160fdea970c254bb72925255d1b62aae692e"
dependencies = [
 "byteorder",
 "integer-encoding",
 "log",
 "ordered-float",
 "threadpool",
]

[[package]]
name = "tikv-jemalloc-ctl"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c"
dependencies = [
 "libc",
 "paste",
 "tikv-jemalloc-sys",
]

[[package]]
name = "tikv-jemalloc-sys"
version = "0.5.4+5.3.0-patched"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1"
dependencies = [
 "cc",
 "libc",
]

[[package]]
name = "tikv-jemallocator"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca"
dependencies = [
 "libc",
 "tikv-jemalloc-sys",
]

Alexander's avatar
Alexander committed
[[package]]
name = "time"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb39ee79a6d8de55f48f2293a830e040392f1c5f16e336bdd1788cd0aadce07"
dependencies = [
 "deranged",
 "itoa",
 "serde",
 "time-core",
 "time-macros",
]

[[package]]
name = "time-core"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"

[[package]]
name = "time-macros"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "733d258752e9303d392b94b75230d07b0b9c489350c69b851fc6c065fde3e8f9"
dependencies = [
 "time-core",
]

[[package]]
name = "tiny-bip39"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861"
dependencies = [
 "anyhow",
 "hmac 0.12.1",
 "once_cell",
 "pbkdf2 0.11.0",
 "rand 0.8.5",
 "rustc-hash",
 "sha2 0.10.7",
 "thiserror",
 "unicode-normalization",
 "wasm-bindgen",
 "zeroize",
]

[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
 "crunchy",
]

[[package]]
name = "tinytemplate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
dependencies = [
 "serde",
 "serde_json",
]

[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
 "tinyvec_macros",
]

[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"

[[package]]
name = "tokio"
version = "1.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
dependencies = [
 "backtrace",
 "bytes",
 "libc",
 "mio",
 "num_cpus",
 "parking_lot 0.12.1",
 "pin-project-lite 0.2.12",
 "signal-hook-registry",
 "socket2 0.5.3",
 "tokio-macros",
 "windows-sys 0.48.0",
]

[[package]]
name = "tokio-macros"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
dependencies = [
 "proc-macro2",
 "quote",
Alexander's avatar
Alexander committed
]

[[package]]
name = "tokio-retry"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
dependencies = [
 "pin-project",
 "rand 0.8.5",
 "tokio",
]

[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
 "rustls 0.21.6",
 "tokio",
]

[[package]]
name = "tokio-stream"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
 "futures-core",
 "pin-project-lite 0.2.12",
 "tokio",
 "tokio-util",
]

[[package]]
name = "tokio-test"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89b3cbabd3ae862100094ae433e1def582cf86451b4e9bf83aa7ac1d8a7d719"
dependencies = [
 "async-stream",
 "bytes",
 "futures-core",
 "tokio",
 "tokio-stream",
]

[[package]]
name = "tokio-tungstenite"
version = "0.17.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181"
dependencies = [
 "futures-util",
 "log",
 "tokio",
 "tungstenite",
]

[[package]]
name = "tokio-util"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
dependencies = [
 "bytes",
 "futures-core",
 "futures-io",
 "futures-sink",
 "pin-project-lite 0.2.12",
 "tokio",
 "tracing",
]

[[package]]
name = "toml"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
 "serde",
]

[[package]]
name = "toml"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
dependencies = [
 "serde",
 "serde_spanned",
 "toml_datetime",
 "toml_edit",
]

[[package]]
name = "toml_datetime"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
dependencies = [
 "serde",
]

[[package]]
name = "toml_edit"
version = "0.19.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
dependencies = [
 "indexmap 2.0.0",
 "serde",
 "serde_spanned",
 "toml_datetime",