Skip to content
Snippets Groups Projects
Cargo.lock 219 KiB
Newer Older
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "lazy_static",
 "regex",
[[package]]
name = "addr2line"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c0929d69e78dd9bf5408269919fcbcaeb2e35e5d43e5815517cdc6a8e11a423"
 "gimli 0.23.0",
]

[[package]]
name = "adler"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"

[[package]]
name = "aead"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
dependencies = [
 "generic-array 0.14.4",
]

[[package]]
name = "aes"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd2bc6d3f370b5666245ff421e231cba4353df936e26986d2918e61a8fd6aef6"
dependencies = [
 "aes-soft",
 "aesni",
 "block-cipher",
]

[[package]]
name = "aes-gcm"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0301c9e9c443494d970a07885e8cf3e587bae8356a1d5abd0999068413f7205f"
dependencies = [
 "aead",
 "aes",
 "block-cipher",
 "subtle 2.3.0",
[[package]]
name = "aes-soft"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63dd91889c49327ad7ef3b500fd1109dbd3c509a03db0d4a9ce413b79f575cb6"
dependencies = [
 "block-cipher",
 "byteorder",
 "opaque-debug 0.3.0",
[[package]]
name = "aesni"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a6fe808308bb07d393e2ea47780043ec47683fcf19cf5efc8ca51c50cc8c68a"
dependencies = [
 "block-cipher",
 "opaque-debug 0.3.0",
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"

[[package]]
name = "ahash"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "aho-corasick"
version = "0.7.15"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "memchr",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
]

[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
dependencies = [
 "winapi 0.3.9",
]

[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
 "winapi 0.3.9",
[[package]]
name = "anyhow"
version = "1.0.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
dependencies = [
[[package]]
name = "arbitrary"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569"
[[package]]
name = "arc-swap"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
Gav's avatar
Gav committed
[[package]]
name = "arrayvec"
Demi Obenour's avatar
Demi Obenour committed
version = "0.4.12"
Gav's avatar
Gav committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
Gav's avatar
Gav committed
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "nodrop",
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "asn1_der"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "asn1_der_derive",
]

[[package]]
name = "asn1_der_derive"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
dependencies = [
[[package]]
name = "assert_cmd"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c88b9ca26f9c16ec830350d309397e74ee9abdfd8eb1f71cb6ecc71a3fc818da"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "doc-comment",
 "predicates",
 "predicates-core",
 "predicates-tree",
[[package]]
name = "assert_matches"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "695579f0f2520f3774bb40461e5adb066459d4e0af4d59d20175484fb8e9edf1"
[[package]]
name = "async-channel"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9"
dependencies = [
 "concurrent-queue",
 "event-listener",
 "futures-core",
]

Ashley's avatar
Ashley committed
[[package]]
name = "async-executor"
version = "1.4.0"
Ashley's avatar
Ashley committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb877970c7b440ead138f6321a3b5395d6061183af779340b65e20c0fede9146"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "async-task",
 "concurrent-queue",
 "fastrand",
 "futures-lite",
 "vec-arena",
]

[[package]]
name = "async-global-executor"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73079b49cd26b8fd5a15f68fc7707fc78698dc2a3d61430f2a7a9430230dfa04"
dependencies = [
 "async-executor",
 "async-io",
 "futures-lite",
 "num_cpus",
]

[[package]]
name = "async-io"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd"
dependencies = [
 "concurrent-queue",
 "fastrand",
 "futures-lite",
 "libc",
 "log",
 "nb-connect",
 "parking",
 "polling",
 "vec-arena",
 "waker-fn",
 "winapi 0.3.9",
]

[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
 "event-listener",
]

[[package]]
name = "async-std"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7e82538bc65a25dbdff70e4c5439d52f068048ab97cdea0acd73f131594caa1"
dependencies = [
 "async-global-executor",
 "async-io",
 "async-mutex",
 "blocking",
 "crossbeam-utils 0.8.0",
 "futures-channel",
Gavin Wood's avatar
Gavin Wood committed
 "futures-core",
 "futures-io",
 "futures-lite",
 "gloo-timers",
Gavin Wood's avatar
Gavin Wood committed
 "kv-log-macro",
Gavin Wood's avatar
Gavin Wood committed
 "memchr",
 "num_cpus",
 "pin-project-lite 0.1.11",
Gavin Wood's avatar
Gavin Wood committed
 "pin-utils",
 "slab",
 "wasm-bindgen-futures",
Ashley's avatar
Ashley committed
]

[[package]]
name = "async-task"
version = "4.0.3"
Ashley's avatar
Ashley committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"
[[package]]
name = "async-tls"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f23d769dbf1838d5df5156e7b1ad404f4c463d1ac2c6aeb6cd943630f8a8400"
 "futures-core",
 "futures-io",
 "rustls 0.19.0",
Gavin Wood's avatar
Gavin Wood committed
 "webpki",
 "webpki-roots",
[[package]]
name = "async-trait"
version = "0.1.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b246867b8b3b6ae56035f1eb1ed557c1d8eae97f0d53696138a50fa0e3a3b8c0"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "atomic"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"
dependencies = [
 "autocfg 1.0.1",
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "atty"
version = "0.2.14"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "hermit-abi",
 "libc",
 "winapi 0.3.9",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
]

[[package]]
name = "autocfg"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "backtrace"
version = "0.3.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2baad346b2d4e94a24347adeee9c7a93f412ee94b9cc26e5b59dea23848e9f28"
dependencies = [
 "cfg-if 1.0.0",
Gavin Wood's avatar
Gavin Wood committed
 "libc",
 "miniz_oxide",
 "object 0.22.0",
Gavin Wood's avatar
Gavin Wood committed
 "rustc-demangle",
Gav Wood's avatar
Gav Wood committed
[[package]]
name = "base58"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"

[[package]]
name = "bincode"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
 "byteorder",
Gavin Wood's avatar
Gavin Wood committed
 "serde",
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
Gavin Wood's avatar
Gavin Wood committed
 "bitflags",
 "cexpr",
 "cfg-if 0.1.10",
Gavin Wood's avatar
Gavin Wood committed
 "clang-sys",
 "clap",
 "env_logger 0.7.1",
Gavin Wood's avatar
Gavin Wood committed
 "lazy_static",
 "lazycell",
Gavin Wood's avatar
Gavin Wood committed
 "peeking_take_while",
 "proc-macro2",
Gavin Wood's avatar
Gavin Wood committed
 "regex",
 "rustc-hash",
Gavin Wood's avatar
Gavin Wood committed
 "shlex",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "bitflags"
version = "1.2.1"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
Tomasz Drwięga's avatar
Tomasz Drwięga committed

cheme's avatar
cheme committed
[[package]]
name = "bitvec"
cheme's avatar
cheme committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
 "either",
 "radium",
]
[[package]]
name = "blake2"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a5720225ef5daecf08657f23791354e1685a8c91a4c60c7f3d3b2892f978f4"
dependencies = [
 "crypto-mac 0.8.0",
 "digest 0.9.0",
 "opaque-debug 0.3.0",
Gav's avatar
Gav committed
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
Gav's avatar
Gav committed
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "arrayvec 0.4.12",
 "constant_time_eq",
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
Gavin Wood's avatar
Gavin Wood committed
 "arrayref",
 "arrayvec 0.5.2",
Gavin Wood's avatar
Gavin Wood committed
 "constant_time_eq",
[[package]]
name = "block-buffer"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
 "block-padding 0.1.5",
Gavin Wood's avatar
Gavin Wood committed
 "byte-tools",
 "byteorder",
 "generic-array 0.12.3",
]

[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
 "block-padding 0.2.1",
 "generic-array 0.14.4",
[[package]]
name = "block-cipher"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f337a3e6da609650eb74e02bc9fac7b735049f7623ab12f2e4c719316fcc7e80"
dependencies = [
 "generic-array 0.14.4",
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "byte-tools",
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"

Ashley's avatar
Ashley committed
[[package]]
name = "blocking"
version = "1.0.2"
Ashley's avatar
Ashley committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
Ashley's avatar
Ashley committed
dependencies = [
 "async-channel",
 "async-task",
 "atomic-waker",
 "fastrand",
 "futures-lite",
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"

version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "473fc6b38233f9af7baa94fb5852dca389e3d95b8e21c8e3719301462c5d9faf"
Gavin Wood's avatar
Gavin Wood committed
 "lazy_static",
 "memchr",
 "regex-automata",
 "serde",
[[package]]
name = "build-helper"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f"
Gavin Wood's avatar
Gavin Wood committed
 "semver 0.6.0",
[[package]]
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
cheme's avatar
cheme committed
[[package]]
name = "byte-slice-cast"
version = "0.3.5"
cheme's avatar
cheme committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
[[package]]
name = "byte-tools"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
[[package]]
name = "byteorder"
version = "1.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "bytes"
version = "0.4.12"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
dependencies = [
 "byteorder",
Gavin Wood's avatar
Gavin Wood committed
 "either",
 "iovec",
[[package]]
name = "bytes"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"
[[package]]
name = "cargo_metadata"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5a5f7b42f606b7f23674f6f4d877628350682bc40687d3fae65679a58d55345"
 "semver 0.11.0",
Gavin Wood's avatar
Gavin Wood committed
 "serde",
 "serde_json",
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "4b9434b9a5aa1450faa3f9cb14ea0e8c53bb5d2b3c1bfd1ab4fc03e9f33fbfb0"
Gavin Wood's avatar
Gavin Wood committed
 "rustc_version",
[[package]]
name = "cc"
version = "1.0.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1770ced377336a88a67c473594ccc14eca6f4559217c34f64aac8f83d641b40"
Gavin Wood's avatar
Gavin Wood committed
 "jobserver",
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
Gavin Wood's avatar
Gavin Wood committed
 "nom",

[[package]]
name = "cfg-if"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

[[package]]
name = "chacha20"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "244fbce0d47e97e8ef2f63b81d5e05882cb518c68531eb33194990d7b7e85845"
dependencies = [
 "stream-cipher",
 "zeroize",
]

[[package]]
name = "chacha20poly1305"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bf18d374d66df0c05cdddd528a7db98f78c28e2519b120855c4f84c5027b1f5"
dependencies = [
 "aead",
 "chacha20",
 "poly1305",
 "stream-cipher",
 "zeroize",
[[package]]
name = "chain-spec-builder"
version = "2.0.0"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "ansi_term 0.12.1",
 "node-cli",
 "rand 0.7.3",
Gavin Wood's avatar
Gavin Wood committed
 "sc-keystore",
 "sp-core",
Gavin Wood's avatar
Gavin Wood committed
 "structopt",
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
Gavin Wood's avatar
Gavin Wood committed
 "js-sys",
Gavin Wood's avatar
Gavin Wood committed
 "num-integer",
Gavin Wood's avatar
Gavin Wood committed
 "time",
 "wasm-bindgen",
 "winapi 0.3.9",
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
 "generic-array 0.14.4",
]

[[package]]
name = "ckb-merkle-mountain-range"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e486fe53bb9f2ca0f58cb60e8679a5354fd6687a839942ef0a75967250289ca6"
dependencies = [
 "cfg-if 0.1.10",
]

[[package]]
name = "clang-sys"
version = "0.29.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
 "glob",
Gavin Wood's avatar
Gavin Wood committed
 "libc",
 "libloading",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "clap"
version = "2.33.3"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
]

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
 "bitflags",
[[package]]
name = "cloudabi"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
dependencies = [
 "bitflags",
]

[[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 = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
 "cfg-if 0.1.10",
Gavin Wood's avatar
Gavin Wood committed
 "wasm-bindgen",
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494"
Gavin Wood's avatar
Gavin Wood committed
 "web-sys",
[[package]]
name = "const_fn"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"

Gav's avatar
Gav committed
[[package]]
Gav Wood's avatar
Gav Wood committed
name = "constant_time_eq"
version = "0.1.5"
Gav Wood's avatar
Gav Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
dependencies = [
 "core-foundation-sys",
Gavin Wood's avatar
Gavin Wood committed
 "libc",
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"

[[package]]
name = "cpuid-bool"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"

[[package]]
name = "cranelift-bforest"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dcc286b052ee24a1e5a222e7c1125e6010ad35b0f248709b9b3737a8fedcfdf"
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-entity",
]

[[package]]
name = "cranelift-codegen"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d9badfe36176cb653506091693bc2bb1970c9bddfcd6ec7fac404f7eaec6f38"
 "byteorder",
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-bforest",
 "cranelift-codegen-meta",
 "cranelift-codegen-shared",
 "cranelift-entity",
 "regalloc",
Gavin Wood's avatar
Gavin Wood committed
 "serde",
 "smallvec 1.5.0",
Gavin Wood's avatar
Gavin Wood committed
 "target-lexicon",
 "thiserror",
]

[[package]]
name = "cranelift-codegen-meta"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3f460031861e4f4ad510be62b2ae50bba6cc886b598a36f9c0a970feab9598"
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-codegen-shared",
 "cranelift-entity",
]

[[package]]
name = "cranelift-codegen-shared"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ad12409e922e7697cd0bdc7dc26992f64a77c31880dfe5e3c7722f4710206d"

[[package]]
name = "cranelift-entity"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97cdc58972ea065d107872cfb9079f4c92ade78a8af85aaff519a65b5d13f71"
Gavin Wood's avatar
Gavin Wood committed
 "serde",
]

[[package]]
name = "cranelift-frontend"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ef419efb4f94ecc02e5d9fbcc910d2bb7f0040e2de570e63a454f883bc891d6"
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-codegen",
 "smallvec 1.5.0",
Gavin Wood's avatar
Gavin Wood committed
 "target-lexicon",
]

[[package]]
name = "cranelift-native"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e69d44d59826eef6794066ac2c0f4ad3975f02d97030c60dbc04e3886adf36e"
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-codegen",
 "raw-cpuid",
 "target-lexicon",
]

[[package]]
name = "cranelift-wasm"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "979df666b1304624abe99738e9e0e7c7479ee5523ba4b8b237df9ff49996acbb"
Gavin Wood's avatar
Gavin Wood committed
 "cranelift-codegen",
 "cranelift-entity",
 "cranelift-frontend",
Gavin Wood's avatar
Gavin Wood committed
 "serde",
 "thiserror",
 "wasmparser 0.59.0",
[[package]]
name = "crc32fast"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
 "cfg-if 1.0.0",
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70daa7ceec6cf143990669a04c7df13391d55fb27bd4079d252fca774ba244d8"
Gavin Wood's avatar
Gavin Wood committed
 "atty",
 "cast",
 "clap",
 "criterion-plot",
Gavin Wood's avatar
Gavin Wood committed
 "csv",
 "itertools 0.9.0",
Gavin Wood's avatar
Gavin Wood committed
 "lazy_static",
Gavin Wood's avatar
Gavin Wood committed
 "oorandom",
 "plotters",
 "rayon",
 "regex",
 "serde",
 "serde_cbor",
Gavin Wood's avatar
Gavin Wood committed
 "serde_derive",
 "serde_json",
 "tinytemplate",
 "walkdir",
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e022feadec601fba1649cfa83586381a4ad31c6bf3a9ab7d408118b05dd9889d"
Gavin Wood's avatar
Gavin Wood committed
 "cast",
 "itertools 0.9.0",
[[package]]
name = "crossbeam-channel"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
dependencies = [
 "cfg-if 1.0.0",
 "crossbeam-utils 0.8.0",
]

[[package]]
name = "crossbeam-deque"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
dependencies = [
 "crossbeam-epoch 0.8.2",
 "crossbeam-utils 0.7.2",
 "maybe-uninit",