d430e7f4e2
* Updated few dependencies * Updated parking_lot to 0.5 * Updated backtrace to 0.3.5 * Updated crossbeam to 0.3
40 lines
992 B
TOML
40 lines
992 B
TOML
[package]
|
|
description = "Ethcore Secret Store"
|
|
name = "ethcore-secretstore"
|
|
version = "1.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.0"
|
|
log = "0.3"
|
|
parking_lot = "0.5"
|
|
hyper = { version = "0.10", default-features = false }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
rustc-hex = "1.0"
|
|
tiny-keccak = "1.3"
|
|
tokio-core = "0.1.6"
|
|
tokio-io = "0.1.0"
|
|
tokio-service = "0.1"
|
|
tokio-proto = "0.1"
|
|
url = "1.0"
|
|
ethcore = { path = "../ethcore" }
|
|
ethcore-bytes = { path = "../util/bytes" }
|
|
ethereum-types = "0.1"
|
|
ethsync = { path = "../sync" }
|
|
kvdb = { path = "../util/kvdb" }
|
|
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
|
|
keccak-hash = { path = "../util/hash" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcrypto = { path = "../ethcrypto" }
|
|
ethkey = { path = "../ethkey" }
|
|
native-contracts = { path = "../ethcore/native_contracts" }
|
|
lazy_static = "1.0"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|