openethereum/ethkey/Cargo.toml

25 lines
478 B
TOML
Raw Normal View History

[package]
name = "ethkey"
version = "0.2.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
rand = "0.3.14"
lazy_static = "0.2"
tiny-keccak = "1.0"
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
rustc-serialize = "0.3"
docopt = { version = "0.7", optional = true }
2017-05-10 13:16:24 +02:00
ethcore-bigint = "0.1.2"
rust-crypto = "0.2"
byteorder = "1.0"
[features]
default = []
cli = ["docopt"]
[[bin]]
name = "ethkey"
path = "src/bin/main.rs"
doc = false