47 lines
1000 B
TOML
47 lines
1000 B
TOML
[package]
|
|
description = "Ethcore utility library"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-util"
|
|
version = "1.1.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[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 = { git = "https://github.com/arkpar/rust-rocksdb.git" }
|
|
lazy_static = "0.1"
|
|
eth-secp256k1 = { git = "https://github.com/ethcore/rust-secp256k1" }
|
|
rust-crypto = "0.2.34"
|
|
elastic-array = "0.4"
|
|
heapsize = "0.3"
|
|
itertools = "0.4"
|
|
crossbeam = "0.2"
|
|
slab = "0.1"
|
|
sha3 = { path = "sha3" }
|
|
serde = "0.7.0"
|
|
clippy = { version = "0.0.63", optional = true}
|
|
json-tests = { path = "json-tests" }
|
|
igd = "0.4.2"
|
|
ethcore-devtools = { path = "../devtools" }
|
|
libc = "0.2.7"
|
|
vergen = "0.1"
|
|
target_info = "0.1"
|
|
bigint = { path = "bigint" }
|
|
chrono = "0.2"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy"]
|
|
|
|
[build-dependencies]
|
|
vergen = "*"
|
|
rustc_version = "0.1.0"
|