openethereum/secret_store/Cargo.toml

45 lines
1.3 KiB
TOML
Raw Normal View History

[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.6"
hyper = { version = "0.11", default-features = false }
2017-07-06 11:36:15 +02:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
futures = "0.1"
futures-cpupool = "0.1"
2017-07-06 11:36:15 +02:00
rustc-hex = "1.0"
2018-05-31 13:53:09 +02:00
tiny-keccak = "1.4"
tokio = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-service = "0.1"
tokio-proto = "0.1"
url = "1.0"
ethcore = { path = "../ethcore" }
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
parity-crypto = { git = "https://github.com/paritytech/parity-common" }
ethcore-logger = { path = "../logger" }
2018-04-10 12:13:49 +02:00
ethcore-sync = { path = "../ethcore/sync" }
ethcore-transaction = { path = "../ethcore/transaction" }
ethereum-types = "0.3"
kvdb = { git = "https://github.com/paritytech/parity-common" }
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
ethkey = { path = "../ethkey" }
lazy_static = "1.0"
ethabi = "5.1"
ethabi-derive = "5.0"
ethabi-contract = "5.0"
2017-11-14 17:47:41 +01:00
[dev-dependencies]
ethcore = { path = "../ethcore", features = ["test-helpers"] }
2017-11-14 17:47:41 +01:00
tempdir = "0.3"
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common" }