33748c2046
* purge unwraps from ethcrypto, ethstore * sweep panics from util
35 lines
701 B
TOML
35 lines
701 B
TOML
[package]
|
|
name = "ethstore"
|
|
version = "0.1.0"
|
|
authors = ["debris <marek.kotewicz@gmail.com>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2.11"
|
|
rand = "0.3.14"
|
|
ethkey = { path = "../ethkey" }
|
|
serde = "0.8"
|
|
serde_json = "0.8"
|
|
serde_macros = { version = "0.8", optional = true }
|
|
rustc-serialize = "0.3"
|
|
rust-crypto = "0.2.36"
|
|
tiny-keccak = "1.0"
|
|
docopt = { version = "0.6", optional = true }
|
|
time = "0.1.34"
|
|
lazy_static = "0.2"
|
|
itertools = "0.4"
|
|
parking_lot = "0.3"
|
|
ethcrypto = { path = "../ethcrypto" }
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.8", optional = true }
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|
|
cli = ["docopt"]
|
|
|
|
[[bin]]
|
|
name = "ethstore"
|
|
doc = false
|