openethereum/Cargo.toml

33 lines
689 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>"]
2016-01-16 14:29:36 +01:00
build = "build.rs"
[build-dependencies]
gcc = "0.3"
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-12-22 22:23:43 +01:00
mio = "0.5.0"
2015-11-29 02:11:56 +01:00
rand = "0.3.12"
time = "0.1.34"
2015-12-01 01:35:32 +01:00
tiny-keccak = "1.0"
2016-01-15 01:57:14 +01:00
rocksdb = "0.3"
lazy_static = "0.1"
eth-secp256k1 = { git = "https://github.com/arkpar/rust-secp256k1.git" }
2015-11-29 02:11:56 +01:00
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"
2016-01-14 21:24:03 +01:00
itertools = "0.4"
2016-01-15 00:50:48 +01:00
slab = { git = "https://github.com/arkpar/slab.git" }
2015-12-02 21:49:57 +01:00
[dev-dependencies]
json-tests = { path = "json-tests" }