Cargo.lock 207 KiB
Newer Older
 "libc",
 "winapi 0.3.8",
[[package]]
name = "tiny-bip39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0165e045cc2ae1660270ca65e1676dbaab60feb0f91b10f7d0665e9b47e31f2"
dependencies = [
 "failure",
 "hmac",
 "once_cell",
 "pbkdf2",
 "rand 0.7.3",
 "rustc-hash",
 "sha2",
 "unicode-normalization",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tiny-keccak"
version = "1.5.0"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crunchy",
[[package]]
name = "tiny-keccak"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
 "crunchy",
[[package]]
name = "tinyvec"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed"

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio"
version = "0.1.22"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "mio",
 "num_cpus",
 "tokio-codec",
 "tokio-current-thread",
 "tokio-executor 0.1.10",
 "tokio-fs",
 "tokio-io",
 "tokio-reactor",
 "tokio-sync 0.1.8",
 "tokio-tcp",
 "tokio-threadpool",
 "tokio-timer",
 "tokio-udp",
 "tokio-uds",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "tokio"
version = "0.2.21"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d099fa27b9702bed751524694adbe393e18b36b204da91eb1cbbbbb4a5ee2d58"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "bytes 0.5.4",
 "fnv",
 "iovec",
 "lazy_static",
 "libc",
 "memchr",
 "mio",
 "mio-uds",
 "num_cpus",
 "pin-project-lite",
 "signal-hook-registry",
 "slab",
 "winapi 0.3.8",
[[package]]
name = "tokio-buf"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
dependencies = [
 "bytes 0.4.12",
 "either",
 "futures 0.1.29",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio-codec"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.2"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "tokio-io",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "tokio-current-thread"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.7"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "futures 0.1.29",
 "tokio-executor 0.1.10",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "tokio-executor"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.10"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crossbeam-utils",
 "futures 0.1.29",
[[package]]
name = "tokio-executor"
version = "0.2.0-alpha.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ee9ceecf69145923834ea73f32ba40c790fd877b74a7817dd0b089f1eb9c7c8"
dependencies = [
 "futures-util-preview",
 "lazy_static",
 "tokio-sync 0.2.0-alpha.6",
]

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio-fs"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.7"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "futures 0.1.29",
 "tokio-io",
 "tokio-threadpool",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "tokio-io"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.13"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "log 0.4.8",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "tokio-named-pipes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d282d483052288b2308ba5ee795f5673b159c9bdf63c385a05609da782a5eae"
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "mio",
 "mio-named-pipes",
 "tokio 0.1.22",
]

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio-reactor"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.12"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crossbeam-utils",
 "futures 0.1.29",
 "lazy_static",
 "log 0.4.8",
 "mio",
 "num_cpus",
 "parking_lot 0.9.0",
 "slab",
 "tokio-executor 0.1.10",
 "tokio-io",
 "tokio-sync 0.1.8",
]

[[package]]
name = "tokio-rustls"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15cb62a0d2770787abc96e99c1cd98fcf17f94959f3af63ca85bdfb203f051b4"
dependencies = [
 "futures-core",
 "tokio 0.2.21",
 "webpki",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "tokio-service"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162"
dependencies = [
 "futures 0.1.29",
]

[[package]]
name = "tokio-sync"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
dependencies = [
 "fnv",
 "futures 0.1.29",
[[package]]
name = "tokio-sync"
version = "0.2.0-alpha.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f1aaeb685540f7407ea0e27f1c9757d258c7c6bf4e3eb19da6fc59b747239d2"
dependencies = [
 "fnv",
 "futures-core-preview",
 "futures-util-preview",
]

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio-tcp"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.4"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "iovec",
 "mio",
 "tokio-io",
 "tokio-reactor",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "tokio-threadpool"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.18"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crossbeam-deque",
 "crossbeam-queue",
 "crossbeam-utils",
 "futures 0.1.29",
 "lazy_static",
 "log 0.4.8",
 "num_cpus",
 "slab",
 "tokio-executor 0.1.10",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "tokio-timer"
Gavin Wood's avatar
Gavin Wood committed
version = "0.2.13"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crossbeam-utils",
 "futures 0.1.29",
 "slab",
 "tokio-executor 0.1.10",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "tokio-udp"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.6"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "bytes 0.4.12",
 "futures 0.1.29",
 "log 0.4.8",
 "mio",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
[[package]]
name = "tokio-uds"
Gavin Wood's avatar
Gavin Wood committed
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5076db410d6fdc6523df7595447629099a1fdc47b3d9f896220780fa48faf798"
 "bytes 0.4.12",
 "futures 0.1.29",
 "iovec",
 "libc",
 "log 0.4.8",
 "mio",
 "mio-uds",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
Gav Wood's avatar
Gav Wood committed
[[package]]
name = "tokio-util"
Gav Wood's avatar
Gav Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
Gav Wood's avatar
Gav Wood committed
dependencies = [
 "bytes 0.5.4",
 "futures-core",
 "futures-sink",
 "log 0.4.8",
 "pin-project-lite",
 "tokio 0.2.21",
[[package]]
Gavin Wood's avatar
Gavin Wood committed
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
dependencies = [
]

[[package]]
name = "tower-service"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"

[[package]]
name = "tracing"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a41f40ed0e162c911ac6fcb53ecdc8134c46905fdbbae8c50add462a538b495f"
dependencies = [
 "cfg-if",
 "tracing-attributes",
 "tracing-core",
]

[[package]]
name = "tracing-attributes"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99bbad0de3fd923c9c3232ead88510b783e5a4d16a6154adffa3d53308de984c"
dependencies = [
 "proc-macro2 1.0.18",
 "quote 1.0.7",
 "syn 1.0.31",
]

[[package]]
name = "tracing-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0aa83a9a47081cd522c09c81b31aec2c9273424976f922ad61c053b58350b715"
dependencies = [
 "lazy_static",
[[package]]
name = "treeline"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41"
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "trie-db"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
version = "0.20.1"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
checksum = "bcc309f34008563989045a4c4dbcc5770467f3a3785ee80a9b5cc0d83362475f"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "hash-db",
 "hashbrown",
 "log 0.4.8",
 "rustc-hex",
[[package]]
name = "trie-db"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb230c24c741993b04cfccbabb45acff6f6480c5f00d3ed8794ea43db3a9d727"
dependencies = [
 "hash-db",
 "hashbrown",
 "log 0.4.8",
 "rustc-hex",
 "smallvec 1.4.0",
]

Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "trie-root"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "hash-db",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "try-lock"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "twox-hash"
version = "1.5.0"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "rand 0.7.3",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "typenum"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "uint"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "173cd16430c206dc1a430af8a89a0e9c076cf15cb42b4aedb10e8cc8fee73681"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "crunchy",
 "rustc-hex",
 "static_assertions",
[[package]]
name = "unicase"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "version_check",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "matches",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "unicode-normalization"
version = "0.1.13"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
dependencies = [
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "unicode-segmentation"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "unicode-width"
Gavin Wood's avatar
Gavin Wood committed
version = "0.1.7"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
asynchronous rob's avatar
asynchronous rob committed

Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
[[package]]
name = "unsigned-varint"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f67332660eb59a6f1eb24ff1220c9e8d01738a8503c6002e30bcfe4bd9f2b4a9"
dependencies = [
 "bytes 0.5.4",
 "futures-io",
 "futures-util",
 "futures_codec",
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "untrusted"
version = "0.7.1"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "url"
version = "1.7.2"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "idna 0.1.5",
 "matches",
 "percent-encoding 1.0.1",
[[package]]
name = "url"
Gavin Wood's avatar
Gavin Wood committed
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
dependencies = [
 "idna 0.2.0",
 "matches",
 "percent-encoding 2.1.0",
[[package]]
name = "vcpkg"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "vec_map"
version = "0.8.2"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "version_check"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
 "libc",
]

asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "want"
version = "0.2.0"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "futures 0.1.29",
 "log 0.4.8",
 "try-lock",
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
 "log 0.4.8",
 "try-lock",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "wasi"
Gavin Wood's avatar
Gavin Wood committed
version = "0.9.0+wasi-snapshot-preview1"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasm-bindgen"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2dc4aa152834bc334f506c1a06b866416a8b6697d5c9f75b9a689c8486def0"
dependencies = [
 "cfg-if",
Fedor Sakharov's avatar
Fedor Sakharov committed
 "serde",
 "serde_json",
 "wasm-bindgen-macro",
]

[[package]]
name = "wasm-bindgen-backend"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded84f06e0ed21499f6184df0e0cb3494727b0c5da89534e0fcc55c51d812101"
dependencies = [
 "bumpalo",
 "lazy_static",
 "log 0.4.8",
 "proc-macro2 1.0.18",
 "quote 1.0.7",
 "syn 1.0.31",
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-futures"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64487204d863f109eb77e8462189d111f27cb5712cc9fdb3461297a76963a2f6"
 "cfg-if",
 "js-sys",
 "wasm-bindgen",
 "web-sys",
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "838e423688dac18d73e31edce74ddfac468e37b1506ad163ffaf0a46f703ffe3"
dependencies = [
 "quote 1.0.7",
 "wasm-bindgen-macro-support",
]

[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3156052d8ec77142051a533cdd686cba889537b213f948cd1d20869926e68e92"
dependencies = [
 "proc-macro2 1.0.18",
 "quote 1.0.7",
 "syn 1.0.31",
 "wasm-bindgen-backend",
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-shared"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9ba19973a58daf4db6f352eda73dc0e289493cd29fb2632eb172085b6521acd"
[[package]]
name = "wasm-timer"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "324c5e65a08699c9c4334ba136597ab22b85dccd4b65dd1e36ccf8f723a95b54"
dependencies = [
 "futures 0.3.5",
 "js-sys",
 "parking_lot 0.9.0",
 "pin-utils",
 "send_wrapper 0.2.0",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
[[package]]
name = "wasmi"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff"
dependencies = [
 "libc",
 "memory_units",
 "num-rational",
 "num-traits 0.2.12",
 "parity-wasm",
 "wasmi-validation",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "wasmi-validation"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "parity-wasm",
[[package]]
name = "wasmparser"
version = "0.51.4"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeb1956b19469d1c5e63e459d29e7b5aa0f558d9f16fcef09736f8a265e6c10a"
[[package]]
name = "wasmparser"
version = "0.52.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "733954023c0b39602439e60a65126fd31b003196d3a1e8e4531b055165a79b31"

Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "wasmtime-debug"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d39ba645aee700b29ff0093028b4123556dd142a74973f04ed6225eedb40e77d"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "anyhow",
 "faerie",
 "gimli 0.20.0",
 "more-asserts",
 "target-lexicon",
 "thiserror",
 "wasmtime-environ",
Gavin Wood's avatar
Gavin Wood committed
]

[[package]]
name = "wasmtime-environ"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed54fd9d64dfeeee7c285fd126174a6b5e6d4efc7e5a1566fdb635e60ff6a74e"
dependencies = [
 "anyhow",
 "base64 0.12.2",
 "bincode",
 "cranelift-codegen",
 "cranelift-entity",
 "cranelift-wasm",
 "directories",
 "errno",
 "file-per-thread-logger",
 "indexmap",
 "libc",
 "log 0.4.8",
 "more-asserts",
 "rayon",
 "serde",
 "sha2",
 "thiserror",
 "toml",
 "winapi 0.3.8",
 "zstd",
[[package]]
name = "wast"
version = "18.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01b1f23531740a81f9300bd2febd397a95c76bfa4aa4bfaf4ca8b1ee3438f337"
dependencies = [
 "leb128",
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4006d418d59293172aebfeeadb7673459dc151874a79135946ea7996b6a98515"
dependencies = [
[[package]]
name = "web-sys"
version = "0.3.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b72fe77fd39e4bd3eaa4412fd299a0be6b3dfe9d2597e2f1c20beb968f41d17"
dependencies = [
 "js-sys",
 "wasm-bindgen",
name = "webpki"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab146130f5f790d45f82aeeb09e55a256573373ec64409fc19a6fb82fb1032ae"
 "ring",
 "untrusted",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "webpki-roots"
version = "0.18.0"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "webpki",
[[package]]
name = "webpki-roots"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
dependencies = [
 "webpki",
ddorgan's avatar
ddorgan committed
[[package]]
name = "westend-runtime"
Gavin Wood's avatar
Gavin Wood committed
version = "0.8.11"
ddorgan's avatar
ddorgan committed
dependencies = [
 "bitvec",
 "frame-benchmarking",
 "frame-executive",
 "frame-support",
 "frame-system",
 "frame-system-benchmarking",
ddorgan's avatar
ddorgan committed
 "frame-system-rpc-runtime-api",
 "hex-literal",
 "libsecp256k1",
 "log 0.3.9",
 "pallet-authority-discovery",
 "pallet-authorship",
 "pallet-babe",
 "pallet-balances",
 "pallet-collective",
 "pallet-democracy",
 "pallet-elections-phragmen",
 "pallet-finality-tracker",
 "pallet-grandpa",
 "pallet-identity",
 "pallet-im-online",
 "pallet-indices",
 "pallet-membership",
ddorgan's avatar
ddorgan committed
 "pallet-nicks",
 "pallet-offences",
 "pallet-offences-benchmarking",
 "pallet-proxy",
ddorgan's avatar
ddorgan committed
 "pallet-randomness-collective-flip",
 "pallet-recovery",
 "pallet-scheduler",
 "pallet-session",
 "pallet-session-benchmarking",
ddorgan's avatar
ddorgan committed
 "pallet-society",
 "pallet-staking",
 "pallet-staking-reward-curve",
 "pallet-sudo",
 "pallet-timestamp",
 "pallet-transaction-payment",
 "pallet-transaction-payment-rpc-runtime-api",
 "pallet-treasury",
 "pallet-utility",
 "pallet-vesting",
 "parity-scale-codec",
 "polkadot-parachain",
 "polkadot-primitives",
 "polkadot-runtime-common",
 "rustc-hex",
 "serde",
 "serde_derive",
 "serde_json",
ddorgan's avatar
ddorgan committed
 "sp-api",
 "sp-authority-discovery",
 "sp-block-builder",
 "sp-consensus-babe",
 "sp-core",
 "sp-inherents",
 "sp-io",
 "sp-keyring",
 "sp-offchain",
 "sp-runtime",
 "sp-session",
 "sp-staking",
 "sp-std",
 "sp-transaction-pool",
 "sp-trie",
 "sp-version",
 "static_assertions",
 "substrate-wasm-builder-runner 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
ddorgan's avatar
ddorgan committed
 "tiny-keccak 1.5.0",
]

[[package]]
name = "which"
version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
dependencies = [
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "winapi"
Gavin Wood's avatar
Gavin Wood committed
version = "0.3.8"
asynchronous rob's avatar
asynchronous rob committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
asynchronous rob's avatar
asynchronous rob committed
]

[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
 "winapi 0.3.8",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
asynchronous rob's avatar
asynchronous rob committed

[[package]]
name = "ws"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94"
dependencies = [
 "bytes 0.4.12",
 "httparse",
 "log 0.4.8",
 "mio",
 "mio-extras",
 "rand 0.7.3",
 "sha-1",
 "slab",
 "url 2.1.1",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [
 "winapi 0.2.8",
 "winapi-build",
[[package]]
name = "x25519-dalek"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "637ff90c9540fa3073bb577e65033069e4bae7c79d49d74aa3ffdf5342a53217"
dependencies = [
 "curve25519-dalek",
 "rand_core 0.5.1",
 "zeroize",
asynchronous rob's avatar
asynchronous rob committed
[[package]]
name = "yamux"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84300bb493cc878f3638b981c62b4632ec1a5c52daaa3036651e8c106d3b55ea"
asynchronous rob's avatar
asynchronous rob committed
dependencies = [