9adee532a0
* updated ethereum-types and tiny-keccak * Updated several deps * Updated several more dependencies * Modify dummy file to trigger ci * fixed update of memmap to 0.6 in ethash crate * Fixed fetch after update to latest reqwest * Updated jsonrpc-core with fixes for serde * add expects in util/version/build.rs
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.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" }
|
|
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"
|