40 lines
1019 B
TOML
40 lines
1019 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.4"
|
|
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" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-bigint = { path = "../util/bigint" }
|
|
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 = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|