Skip to content
Cargo.lock 232 KiB
Newer Older
 "sp-runtime",
 "sp-timestamp",
 "sp-version",
 "substrate-prometheus-endpoint",
[[package]]
name = "sc-consensus-babe-rpc"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
 "derive_more",
 "futures 0.3.8",
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "sc-consensus-babe",
 "sc-consensus-epochs",
Gavin Wood's avatar
Gavin Wood committed
 "sp-application-crypto",
 "sp-blockchain",
 "sp-consensus",
 "sp-consensus-babe",
 "sp-core",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "sc-consensus-epochs"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "fork-tree",
 "parity-scale-codec",
 "sc-client-api",
 "sp-blockchain",
 "sp-runtime",
name = "sc-consensus-slots"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "parity-scale-codec",
 "sc-client-api",
 "sc-telemetry",
 "sp-api",
 "sp-application-crypto",
 "sp-arithmetic",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-inherents",
 "sp-runtime",
 "sp-state-machine",
name = "sc-consensus-uncles"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "sc-client-api",
 "sp-authorship",
 "sp-consensus",
 "sp-core",
 "sp-inherents",
 "sp-runtime",
[[package]]
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "lazy_static",
 "libsecp256k1",
 "parity-scale-codec",
 "parity-wasm",
 "sc-executor-common",
 "sc-executor-wasmi",
 "sc-executor-wasmtime",
Gav Wood's avatar
Gav Wood committed
 "sp-api",
 "sp-core",
 "sp-externalities",
 "sp-io",
 "sp-panic-handler",
 "sp-runtime-interface",
 "sp-serializer",
 "sp-trie",
 "sp-version",
 "sp-wasm-interface",
 "wasmi",
]

[[package]]
name = "sc-executor-common"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "parity-scale-codec",
 "sp-allocator",
 "sp-core",
 "sp-runtime-interface",
 "sp-serializer",
 "sp-wasm-interface",
 "wasmi",
]

[[package]]
name = "sc-executor-wasmi"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "parity-scale-codec",
 "sc-executor-common",
 "sp-allocator",
 "sp-core",
 "sp-runtime-interface",
 "sp-wasm-interface",
 "wasmi",
]

[[package]]
name = "sc-executor-wasmtime"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "parity-scale-codec",
 "parity-wasm",
 "sc-executor-common",
 "scoped-tls",
 "sp-allocator",
 "sp-core",
 "sp-runtime-interface",
 "sp-wasm-interface",
name = "sc-finality-grandpa"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "finality-grandpa",
 "fork-tree",
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "parity-scale-codec",
 "pin-project 0.4.27",
 "rand 0.7.3",
 "sc-block-builder",
 "sc-client-api",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sc-consensus",
 "sc-keystore",
 "sc-network",
 "sc-network-gossip",
 "sc-telemetry",
 "serde_json",
 "sp-api",
 "sp-application-crypto",
 "sp-arithmetic",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-finality-grandpa",
 "sp-inherents",
 "sp-runtime",
 "substrate-prometheus-endpoint",
[[package]]
name = "sc-finality-grandpa-rpc"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "finality-grandpa",
 "futures 0.3.8",
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "sc-client-api",
 "sc-finality-grandpa",
 "serde",
 "serde_json",
 "sp-blockchain",
[[package]]
name = "sc-informant"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "ansi_term 0.12.1",
 "futures 0.3.8",
 "log",
 "parity-util-mem",
 "sc-client-api",
 "sc-network",
 "sp-blockchain",
 "sp-runtime",
 "sp-transaction-pool",
 "sp-utils",
 "wasm-timer",
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "futures 0.3.8",
Gavin Wood's avatar
Gavin Wood committed
 "merlin",
 "rand 0.7.3",
 "serde_json",
 "sp-application-crypto",
 "sp-core",
 "subtle 2.3.0",
]

[[package]]
name = "sc-light"
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "hash-db",
 "lazy_static",
 "parity-scale-codec",
 "parking_lot 0.10.2",
 "sc-client-api",
 "sc-executor",
 "sp-api",
 "sp-blockchain",
 "sp-core",
 "sp-externalities",
 "sp-runtime",
 "sp-state-machine",
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
Wei Tang's avatar
Wei Tang committed
 "async-std",
 "bitflags",
 "bs58 0.3.1",
 "bytes 0.5.6",
 "derive_more",
 "either",
 "erased-serde",
 "fnv",
 "fork-tree",
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "futures_codec",
 "libp2p",
 "linked-hash-map",
 "linked_hash_set",
 "nohash-hasher",
 "parity-scale-codec",
 "pin-project 0.4.27",
 "prost",
 "prost-build",
 "rand 0.7.3",
 "sc-block-builder",
 "sc-client-api",
 "sc-peerset",
 "serde",
 "serde_json",
 "slog",
 "slog_derive",
 "smallvec 0.6.13",
 "sp-arithmetic",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-runtime",
 "substrate-prometheus-endpoint",
 "thiserror",
 "unsigned-varint 0.4.0",
 "void",
 "wasm-timer",
 "zeroize",
[[package]]
name = "sc-network-gossip"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "libp2p",
 "sc-network",
 "sp-runtime",
 "wasm-timer",
[[package]]
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "bytes 0.5.6",
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "hyper 0.13.9",
 "hyper-rustls",
 "num_cpus",
 "parity-scale-codec",
 "rand 0.7.3",
 "sc-client-api",
 "sc-keystore",
 "sc-network",
 "sp-api",
 "sp-core",
 "sp-offchain",
 "sp-runtime",
 "threadpool",
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
 "futures 0.3.8",
 "libp2p",
 "serde_json",
 "wasm-timer",
[[package]]
name = "sc-proposer-metrics"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
 "substrate-prometheus-endpoint",
]

version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "futures 0.3.8",
 "hash-db",
 "jsonrpc-core",
 "jsonrpc-pubsub",
 "parity-scale-codec",
 "sc-block-builder",
 "sc-client-api",
 "sc-executor",
 "sc-keystore",
 "sc-rpc-api",
 "serde_json",
 "sp-api",
 "sp-blockchain",
 "sp-core",
 "sp-offchain",
 "sp-rpc",
 "sp-runtime",
 "sp-session",
 "sp-state-machine",
 "sp-transaction-pool",
 "sp-version",
[[package]]
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "futures 0.3.8",
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "jsonrpc-pubsub",
 "parity-scale-codec",
 "serde",
 "serde_json",
 "sp-core",
 "sp-rpc",
 "sp-runtime",
 "sp-transaction-pool",
 "sp-version",
thiolliere's avatar
thiolliere committed
[[package]]
name = "sc-rpc-server"
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
thiolliere's avatar
thiolliere committed
dependencies = [
 "futures 0.1.30",
 "jsonrpc-core",
 "jsonrpc-http-server",
Gavin Wood's avatar
Gavin Wood committed
 "jsonrpc-ipc-server",
 "jsonrpc-pubsub",
 "jsonrpc-ws-server",
 "serde",
 "serde_json",
 "sp-runtime",
 "substrate-prometheus-endpoint",
Gav Wood's avatar
Gav Wood committed
[[package]]
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "exit-future",
 "futures 0.1.30",
 "futures 0.3.8",
 "futures-timer 3.0.2",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "hash-db",
 "jsonrpc-core",
 "lazy_static",
 "parity-scale-codec",
 "parity-util-mem",
 "pin-project 0.4.27",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "rand 0.7.3",
 "sc-block-builder",
 "sc-chain-spec",
 "sc-client-api",
 "sc-client-db",
 "sc-executor",
 "sc-informant",
 "sc-keystore",
 "sc-light",
 "sc-network",
 "sc-offchain",
 "sc-rpc",
 "sc-rpc-server",
 "sc-telemetry",
 "sc-tracing",
 "sc-transaction-pool",
 "serde",
 "serde_json",
 "slog",
 "sp-api",
 "sp-application-crypto",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sp-block-builder",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sp-externalities",
 "sp-runtime",
 "sp-session",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sp-state-machine",
 "sp-tracing",
 "sp-transaction-pool",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sp-trie",
Web3 Philosopher's avatar
Web3 Philosopher committed
 "sp-version",
 "substrate-prometheus-endpoint",
 "tracing",
 "tracing-futures",
 "wasm-timer",
Gav Wood's avatar
Gav Wood committed
]

version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "parity-scale-codec",
 "parity-util-mem",
 "parity-util-mem-derive",
 "sc-client-api",
 "sp-core",
[[package]]
name = "sc-sync-state-rpc"
version = "0.8.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "sc-chain-spec",
 "sc-client-api",
 "sc-consensus-babe",
 "sc-consensus-epochs",
 "sc-finality-grandpa",
 "sc-rpc-api",
 "serde_json",
 "sp-blockchain",
 "sp-runtime",
]

Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "sc-telemetry"
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "futures 0.3.8",
 "futures-timer 3.0.2",
 "libp2p",
 "pin-project 0.4.27",
 "rand 0.7.3",
 "serde",
 "slog",
 "slog-json",
 "slog-scope",
 "take_mut",
 "void",
 "wasm-timer",
[[package]]
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "erased-serde",
 "sc-telemetry",
 "serde",
 "serde_json",
 "slog",
 "tracing-core",
 "tracing-subscriber",
name = "sc-transaction-graph"
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "futures 0.3.8",
 "linked-hash-map",
 "parity-util-mem",
 "serde",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "sp-transaction-pool",
 "wasm-timer",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "sc-transaction-pool"
version = "2.0.0"
source = "git+https://github.com/paritytech/substrate#c180950de63dbdfaa11053a8a56f35e694ed9e36"
dependencies = [
 "derive_more",
 "futures 0.3.8",
 "futures-diagnose",
 "parity-scale-codec",
 "parity-util-mem",
 "sc-client-api",
 "sc-transaction-graph",
 "sp-api",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "sp-tracing",
 "sp-transaction-pool",
Gav Wood's avatar
Gav Wood committed
 "substrate-prometheus-endpoint",
 "wasm-timer",
]

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

[[package]]
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "arrayref",
 "arrayvec 0.5.2",
 "curve25519-dalek 2.1.0",
 "getrandom 0.1.15",
 "merlin",
 "rand 0.7.3",
 "rand_core 0.5.1",
 "sha2 0.8.2",
 "subtle 2.3.0",
 "zeroize",
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
[[package]]
name = "scopeguard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"

version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda28d4b4830b807a8b43f7b0e6b5df875311b3e7621d84577188c175b6ec1ec"
 "scroll_derive",
name = "scroll_derive"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b12bd20b94c7cdfda8c7ba9b92ad0d9a56e3fa018c25fca83b51aa664c9b4c0d"
dependencies = [
 "proc-macro2 1.0.24",
 "quote 1.0.7",
 "syn 1.0.48",
name = "sct"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
 "ring",
 "untrusted",
[[package]]
name = "secrecy"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9182278ed645df3477a9c27bfee0621c621aa16f6972635f7f795dae3d81070f"
dependencies = [
 "zeroize",
]

[[package]]
name = "security-framework"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad502866817f0575705bd7be36e2b2535cc33262d493aa733a2ec862baa2bc2b"
dependencies = [
 "bitflags",
 "core-foundation",
 "core-foundation-sys",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51ceb04988b17b6d1dcd555390fa822ca5637b4a14e1f5099f13d351bed4d6c7"
dependencies = [
 "core-foundation-sys",
 "libc",
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
 "semver-parser",
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
[[package]]
name = "send_wrapper"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "686ef91cf020ad8d4aca9a7047641fd6add626b7b89e14546c2b6a76781cf822"
[[package]]
name = "send_wrapper"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
[[package]]
name = "separator"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"

[[package]]
name = "serde"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
dependencies = [
 "serde_derive",
Kian Paimani's avatar
Kian Paimani committed
]

[[package]]
name = "serde_derive"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
 "proc-macro2 1.0.24",
 "quote 1.0.7",
 "syn 1.0.48",
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
Gav Wood's avatar
Gav Wood committed
dependencies = [
 "itoa",
 "ryu",
 "serde",
Gav Wood's avatar
Gav Wood committed
]

Gavin Wood's avatar
Gavin Wood committed
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
 "block-buffer 0.7.3",
 "digest 0.8.1",
 "fake-simd",
 "opaque-debug 0.2.3",
[[package]]
name = "sha-1"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce3cdf1b5e620a498ee6f2a171885ac7e22f0e12089ec4b3d22b84921792507c"
dependencies = [
 "block-buffer 0.9.0",
 "cfg-if 1.0.0",
 "cpuid-bool",
 "digest 0.9.0",
 "opaque-debug 0.3.0",
]

[[package]]
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
dependencies = [
 "block-buffer 0.7.3",
 "digest 0.8.1",
 "fake-simd",
 "opaque-debug 0.2.3",
]

[[package]]
name = "sha2"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
dependencies = [
 "block-buffer 0.9.0",
 "cfg-if 1.0.0",
 "cpuid-bool",
 "digest 0.9.0",
 "opaque-debug 0.3.0",
[[package]]
name = "sha3"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
dependencies = [
 "block-buffer 0.9.0",
 "digest 0.9.0",
 "keccak",
 "opaque-debug 0.3.0",
]

[[package]]
name = "sharded-slab"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b4921be914e16899a80adefb821f8ddb7974e3f1250223575a44ed994882127"
dependencies = [
 "lazy_static",
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "shared_memory"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf3ab0cdff84d6c66fc9e268010ea6508e58ee942575afb66f2cf194bb218bb4"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "cfg-if 0.1.10",
 "enum_primitive",
 "libc",
 "memrange",
 "nix 0.10.0",
 "rand 0.4.6",
 "shared_memory_derive",
 "theban_interval_tree",
 "winapi 0.3.9",
[[package]]
name = "shared_memory_derive"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "767a14f1304be2f0b04e69860252f8ae9cfae0afaa9cc07b675147c43425dd3a"
 "proc-macro2 0.4.30",
 "quote 0.6.13",
 "syn 0.15.44",
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
Gavin Wood's avatar
Gavin Wood committed
[[package]]
name = "signal-hook-registry"
version = "1.2.2"
Gavin Wood's avatar
Gavin Wood committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
[[package]]
name = "signature"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29f060a7d147e33490ec10da418795238fd7545bba241504d6b31a409f2e6210"
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
name = "slog"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "erased-serde",
Gavin Wood's avatar
Gavin Wood committed
]
name = "slog-json"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "chrono",
 "erased-serde",
 "serde",
 "serde_json",
 "slog",
Gavin Wood's avatar
Gavin Wood committed
]

[[package]]
name = "slog-scope"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"
Gavin Wood's avatar
Gavin Wood committed
dependencies = [
 "arc-swap",
 "lazy_static",
 "slog",
Gavin Wood's avatar
Gavin Wood committed
]

[[package]]
name = "slog_derive"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a945ec7f7ce853e89ffa36be1e27dce9a43e82ff9093bf3461c30d5da74ed11b"
dependencies = [
 "proc-macro2 1.0.24",