openethereum/util/Cargo.toml

33 lines
713 B
TOML
Raw Normal View History

2016-01-17 13:11:25 +01:00
[package]
description = "Ethcore utility library"
homepage = "http://ethcore.io"
license = "GPL-3.0"
name = "ethcore-util"
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]
log = "0.3"
env_logger = "0.3"
rustc-serialize = "0.3"
arrayvec = "0.3"
mio = "0.5.0"
rand = "0.3.12"
time = "0.1.34"
tiny-keccak = "1.0"
rocksdb = "0.3"
lazy_static = "0.1"
eth-secp256k1 = { git = "https://github.com/arkpar/rust-secp256k1.git" }
rust-crypto = "0.2.34"
elastic-array = "0.4"
heapsize = "0.2"
itertools = "0.4"
2016-01-21 16:48:37 +01:00
crossbeam = "0.2"
2016-01-17 13:11:25 +01:00
slab = { git = "https://github.com/arkpar/slab.git" }
2016-01-18 12:49:39 +01:00
sha3 = { path = "sha3" }
2016-01-26 19:24:33 +01:00
serde = "0.6.7"
clippy = "0.0.37"
2016-01-17 13:11:25 +01:00
[dev-dependencies]
json-tests = { path = "json-tests" }