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"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2018-04-10 19:25:27 +02:00
|
|
|
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"
|
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"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2018-04-10 19:25:27 +02:00
|
|
|
tokio = "0.1"
|
|
|
|
tokio-core = "0.1"
|
|
|
|
tokio-io = "0.1"
|
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-04-03 17:46:51 +02:00
|
|
|
ethcore = { path = "../ethcore" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
parity-crypto = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-10 13:56:56 +02:00
|
|
|
ethcore-logger = { path = "../logger" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
2018-04-09 16:38:59 +02:00
|
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
2017-02-20 16:13:21 +01:00
|
|
|
ethkey = { path = "../ethkey" }
|
2018-01-17 11:45:29 +01:00
|
|
|
lazy_static = "1.0"
|
2018-02-09 09:32:06 +01:00
|
|
|
ethabi = "5.1"
|
|
|
|
ethabi-derive = "5.0"
|
|
|
|
ethabi-contract = "5.0"
|
2017-11-14 17:47:41 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
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"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common" }
|