2017-02-20 16:13:21 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore Secret Store"
|
|
|
|
name = "ethcore-secretstore"
|
|
|
|
version = "1.0.0"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-04-03 11:13:51 +02:00
|
|
|
byteorder = "1.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2019-02-07 14:34:24 +01:00
|
|
|
ethabi = "6.0"
|
|
|
|
ethabi-contract = "6.0"
|
|
|
|
ethabi-derive = "6.0"
|
|
|
|
ethcore = { path = "../ethcore" }
|
|
|
|
ethcore-accounts = { path = "../accounts", optional = true}
|
2019-01-17 16:43:08 +01:00
|
|
|
ethcore-call-contract = { path = "../ethcore/call-contract" }
|
2019-02-07 14:34:24 +01:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
|
|
|
ethereum-types = "0.4"
|
|
|
|
ethkey = { path = "../accounts/ethkey" }
|
|
|
|
futures = "0.1"
|
|
|
|
hyper = { version = "0.12", default-features = false }
|
|
|
|
keccak-hash = "0.1"
|
|
|
|
kvdb = "0.1"
|
|
|
|
lazy_static = "1.0"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-02-07 14:34:24 +01:00
|
|
|
parity-bytes = "0.1"
|
|
|
|
parity-crypto = "0.3"
|
|
|
|
parity-runtime = { path = "../util/runtime" }
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2019-02-07 14:34:24 +01:00
|
|
|
rustc-hex = "1.0"
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2019-02-07 14:34:24 +01:00
|
|
|
serde_json = "1.0"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2018-10-22 09:40:50 +02:00
|
|
|
tokio = "~0.1.11"
|
2018-04-10 19:25:27 +02:00
|
|
|
tokio-io = "0.1"
|
2017-04-03 11:13:51 +02:00
|
|
|
tokio-service = "0.1"
|
2017-02-20 16:13:21 +01:00
|
|
|
url = "1.0"
|
2017-11-14 17:47:41 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
2017-11-14 17:47:41 +01:00
|
|
|
tempdir = "0.3"
|
2018-09-03 18:40:11 +02:00
|
|
|
kvdb-rocksdb = "0.1.3"
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
accounts = ["ethcore-accounts"]
|