Cargo.lock 60 KiB
Newer Older
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "aho-corasick"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "ansi_term"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "arrayvec"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
 "odds 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "assert_matches"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "atty"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "backtrace"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "backtrace-sys"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "base64"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "bigint"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "bitflags"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "bitflags"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "byteorder"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "bytes"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "cc"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "cfg-if"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "clap"
version = "2.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
]

Gav's avatar
Gav committed
[[package]]
name = "coco"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "crunchy"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "dbghelp-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "difference"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "dtoa"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gav's avatar
Gav committed
[[package]]
name = "either"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "elastic-array"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "env_logger"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "environmental"
version = "0.1.0"

[[package]]
name = "error-chain"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "backtrace 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "ethcore-bigint"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bigint 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "plain_hasher 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "ethcore-bytes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "ethcore-logger"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "arrayvec 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "isatty 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "fixed-hash"
version = "0.1.0"
source = "git+https://github.com/paritytech/primitives.git#940a287e1e2c0a899ce27926d206c4c2925d009d"
dependencies = [
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "fnv"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "fuchsia-zircon"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "fuchsia-zircon-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "futures"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "futures-cpupool"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gav's avatar
Gav committed
[[package]]
name = "gcc"
version = "0.3.54"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "globset"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "aho-corasick 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "hashdb"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bigint 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "heapsize"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "httparse"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "hyper"
version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "relay 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-proto 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "unicase 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "iovec"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "isatty"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "itoa"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "jsonrpc-core"
version = "8.0.0"
source = "git+https://github.com/paritytech/jsonrpc.git#8f921ed65cda3fba0ce55d31ed62c7f0c3b32966"
dependencies = [
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_derive 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "jsonrpc-http-server"
version = "8.0.0"
source = "git+https://github.com/paritytech/jsonrpc.git#8f921ed65cda3fba0ce55d31ed62c7f0c3b32966"
dependencies = [
 "hyper 0.11.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "jsonrpc-server-utils 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
 "unicase 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "jsonrpc-macros"
version = "8.0.0"
source = "git+https://github.com/paritytech/jsonrpc.git#8f921ed65cda3fba0ce55d31ed62c7f0c3b32966"
dependencies = [
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "jsonrpc-pubsub 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "jsonrpc-pubsub"
version = "8.0.0"
source = "git+https://github.com/paritytech/jsonrpc.git#8f921ed65cda3fba0ce55d31ed62c7f0c3b32966"
dependencies = [
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "jsonrpc-server-utils"
version = "8.0.0"
source = "git+https://github.com/paritytech/jsonrpc.git#8f921ed65cda3fba0ce55d31ed62c7f0c3b32966"
dependencies = [
 "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "globset 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "keccak-hash"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bigint 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tiny-keccak 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "lazy_static"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gav's avatar
Gav committed
[[package]]
name = "lazy_static"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "lazycell"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "libc"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "log"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "memchr"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "memorydb"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bigint 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bigint 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "hashdb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "keccak-hash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rlp 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "mime"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unicase 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "mio"
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazycell 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "native-runtime"
version = "0.1.0"
dependencies = [
 "runtime-support 0.1.0",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "net2"
version = "0.2.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "nodrop"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "num-traits"
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "num_cpus"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "odds"
version = "0.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "owning_ref"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "stable_deref_trait 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "parity-wasm"
version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "parking_lot"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot_core 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gav's avatar
Gav committed
[[package]]
name = "parking_lot"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot_core 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "parking_lot_core"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
 "smallvec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "patricia-trie"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bigint 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bytes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-logger 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "hashdb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "keccak-hash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "memorydb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
 "rlp 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "triehash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "percent-encoding"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "plain_hasher"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "polkadot"
version = "0.1.0"
dependencies = [
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "polkadot-cli 0.1.0",
[[package]]
name = "polkadot-candidate-agreement"
version = "0.1.0"
dependencies = [
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
]

[[package]]
name = "polkadot-cli"
version = "0.1.0"
dependencies = [
 "clap 2.27.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "polkadot-client 0.1.0",
 "polkadot-executor 0.1.0",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "polkadot-primitives 0.1.0",
 "polkadot-rpc-servers 0.1.0",
]

[[package]]
name = "polkadot-client"
version = "0.1.0"
dependencies = [
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
 "polkadot-state-machine 0.1.0",
[[package]]
name = "polkadot-collator"
version = "0.1.0"
dependencies = [
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
]

name = "polkadot-executor"
version = "0.1.0"
dependencies = [
 "assert_matches 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "parity-wasm 0.15.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
 "polkadot-serializer 0.1.0",
 "polkadot-state-machine 0.1.0",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_derive 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "tiny-keccak 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
[[package]]
name = "polkadot-primitives"
version = "0.1.0"
dependencies = [
 "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "fixed-hash 0.1.0 (git+https://github.com/paritytech/primitives.git)",
 "polkadot-serializer 0.1.0",
 "pretty_assertions 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gav's avatar
Gav committed
 "ring 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_derive 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "tiny-keccak 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "uint 0.1.0 (git+https://github.com/paritytech/primitives.git)",
Gav's avatar
Gav committed
 "untrusted 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "polkadot-rpc"
version = "0.1.0"
dependencies = [
 "assert_matches 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "jsonrpc-macros 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "polkadot-client 0.1.0",
 "polkadot-executor 0.1.0",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
 "polkadot-primitives 0.1.0",
 "polkadot-state-machine 0.1.0",
]

[[package]]
name = "polkadot-rpc-servers"
version = "0.1.0"
dependencies = [
 "jsonrpc-core 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "jsonrpc-http-server 8.0.0 (git+https://github.com/paritytech/jsonrpc.git)",
 "polkadot-rpc 0.1.0",
]

[[package]]
name = "polkadot-serializer"
version = "0.1.0"
dependencies = [
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "polkadot-state-machine"
version = "0.1.0"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "hashdb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "keccak-hash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "memorydb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "patricia-trie 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
 "triehash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
[[package]]
name = "polkadot-validator"
version = "0.1.0"
dependencies = [
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "polkadot-primitives 0.1.0",
 "polkadot-serializer 0.1.0",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "pretty_assertions"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "difference 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "quote"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "rand"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
Tomasz Drwięga's avatar
Tomasz Drwięga committed
]

Gav's avatar
Gav committed
[[package]]
name = "rayon"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "rayon-core 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rayon-core"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "redox_syscall"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "redox_termios"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "redox_syscall 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "regex"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "aho-corasick 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex-syntax 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "thread_local 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "regex-syntax"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "relay"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gav's avatar
Gav committed
[[package]]
name = "ring"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "rayon 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "untrusted 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rlp"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "ethcore-bigint 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "runtime-support"
version = "0.1.0"
Gav's avatar
Gav committed
dependencies = [
Gav's avatar
Gav committed
 "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gav's avatar
Gav committed
 "polkadot-primitives 0.1.0",
 "polkadot-state-machine 0.1.0",
 "tiny-keccak 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gav's avatar
Gav committed
]
[[package]]
name = "rustc-demangle"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "rustc-hex"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "rustc_version"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rustc_version"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "safemem"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "scoped-tls"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gav's avatar
Gav committed
[[package]]
name = "scopeguard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "semver"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "semver"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "serde"
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "serde_derive"
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_derive_internals 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "serde_derive_internals"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "serde_json"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "num-traits 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
]

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[[package]]
name = "slab"
version = "0.3.0"