6345b54034
The panic hook prints a backtrace, the panic message, file, and line number, and a plea to report bugs.
18 lines
317 B
TOML
18 lines
317 B
TOML
[package]
|
|
name = "ethstore-cli"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
docopt = "0.8"
|
|
ethstore = { path = "../" }
|
|
panic_hook = { path = "../../panic_hook" }
|
|
|
|
[[bin]]
|
|
name = "ethstore"
|
|
path = "src/main.rs"
|
|
doc = false
|