2017-06-19 11:29:09 +02:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum Key Management CLI"
|
2017-06-19 11:29:09 +02:00
|
|
|
name = "ethstore-cli"
|
2019-01-03 14:07:27 +01:00
|
|
|
version = "0.1.1"
|
2017-06-19 11:29:09 +02:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-11-11 11:19:44 +01:00
|
|
|
docopt = "1.0"
|
2019-01-03 14:07:27 +01:00
|
|
|
env_logger = "0.5"
|
2017-12-01 09:40:07 +01:00
|
|
|
num_cpus = "1.6"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2017-06-19 11:29:09 +02:00
|
|
|
ethstore = { path = "../" }
|
2019-10-23 13:03:46 +02:00
|
|
|
ethkey = { path = "../../ethkey" }
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
2018-12-28 10:33:49 +01:00
|
|
|
dir = { path = '../../../util/dir' }
|
|
|
|
panic_hook = { path = "../../../util/panic-hook" }
|
2017-06-19 11:29:09 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "ethstore"
|
|
|
|
path = "src/main.rs"
|
|
|
|
doc = false
|
2018-03-28 21:04:08 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-06-03 15:36:21 +02:00
|
|
|
tempdir = "0.3"
|