2e12a2db50
* created the dir crate in util * moved code from ethstore/src/dir/paths.rs to dir crate * rename dir module in ethstore to accounts_dir to distinguish it from the dir crate * changes after @tomusdrw on #6952
21 lines
388 B
TOML
21 lines
388 B
TOML
[package]
|
|
name = "ethstore-cli"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
docopt = "0.8"
|
|
num_cpus = "1.6"
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
parking_lot = "0.4"
|
|
ethstore = { path = "../" }
|
|
dir = { path = '../../util/dir' }
|
|
panic_hook = { path = "../../panic_hook" }
|
|
|
|
[[bin]]
|
|
name = "ethstore"
|
|
path = "src/main.rs"
|
|
doc = false
|