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>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
|
|
|
|
[dependencies]
|
2017-04-03 11:13:51 +02:00
|
|
|
byteorder = "1.0"
|
2017-02-20 16:13:21 +01:00
|
|
|
log = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
parking_lot = "0.4"
|
2017-02-24 09:22:29 +01:00
|
|
|
hyper = { version = "0.10", default-features = false }
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2017-04-03 11:13:51 +02:00
|
|
|
futures = "0.1"
|
|
|
|
futures-cpupool = "0.1"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2017-04-08 11:26:16 +02:00
|
|
|
tokio-core = "0.1.6"
|
|
|
|
tokio-io = "0.1.0"
|
2017-04-03 11:13:51 +02:00
|
|
|
tokio-service = "0.1"
|
|
|
|
tokio-proto = "0.1"
|
2017-02-20 16:13:21 +01:00
|
|
|
url = "1.0"
|
2017-07-06 11:36:15 +02:00
|
|
|
ethabi = "2.0"
|
2017-04-03 17:46:51 +02:00
|
|
|
ethcore = { path = "../ethcore" }
|
2017-02-20 16:13:21 +01:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
|
|
|
ethcore-util = { path = "../util" }
|
|
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
2017-04-25 21:34:03 +02:00
|
|
|
ethcore-logger = { path = "../logger" }
|
2017-02-20 16:13:21 +01:00
|
|
|
ethcrypto = { path = "../ethcrypto" }
|
|
|
|
ethkey = { path = "../ethkey" }
|
2017-04-03 17:46:51 +02:00
|
|
|
native-contracts = { path = "../ethcore/native_contracts" }
|