openethereum/Cargo.toml

27 lines
515 B
TOML
Raw Normal View History

2015-11-24 20:57:45 +01:00
[package]
2015-11-24 21:24:00 +01:00
description = "Ethcore utility library"
2015-11-24 21:25:07 +01:00
homepage = "http://ethcore.io"
license = "GPL-3.0"
2015-11-24 20:57:45 +01:00
name = "ethcore-util"
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
2015-11-24 22:21:31 +01:00
[dependencies]
log = "0.3"
env_logger = "0.3"
2015-11-25 19:26:40 +01:00
rustc-serialize = "0.3"
2015-11-26 23:44:03 +01:00
arrayvec = "0.3"
2015-11-29 02:11:56 +01:00
mio = "0.4.4"
rand = "0.3.12"
time = "0.1.34"
2015-12-01 01:35:32 +01:00
tiny-keccak = "1.0"
rocksdb = "0.2.1"
2015-11-29 01:39:39 +01:00
lazy_static = "0.1.*"
2015-11-29 02:11:56 +01:00
secp256k1 = "0.5.1"
rust-crypto = "0.2.34"
2015-12-07 11:27:12 +01:00
elastic-array = "0.4"
2015-12-16 16:23:08 +01:00
heapsize = "0.2"
2015-12-02 21:49:57 +01:00
[dev-dependencies]
json-tests = { path = "json-tests" }