2016-01-17 13:11:25 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore utility library"
|
|
|
|
homepage = "http://ethcore.io"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-util"
|
2016-06-25 10:32:05 +02:00
|
|
|
version = "1.3.0"
|
2016-01-17 13:11:25 +01:00
|
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
2016-02-21 21:14:09 +01:00
|
|
|
build = "build.rs"
|
2016-01-17 13:11:25 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.3"
|
|
|
|
rustc-serialize = "0.3"
|
|
|
|
arrayvec = "0.3"
|
2016-06-13 18:55:24 +02:00
|
|
|
mio = { git = "https://github.com/ethcore/mio", branch = "v0.5.x" }
|
2016-05-03 19:24:19 +02:00
|
|
|
nix ="0.5.0"
|
2016-01-17 13:11:25 +01:00
|
|
|
rand = "0.3.12"
|
|
|
|
time = "0.1.34"
|
|
|
|
tiny-keccak = "1.0"
|
2016-05-19 14:36:15 +02:00
|
|
|
rocksdb = { git = "https://github.com/ethcore/rust-rocksdb" }
|
2016-06-20 00:10:34 +02:00
|
|
|
lazy_static = "0.2"
|
2016-02-27 13:14:58 +01:00
|
|
|
eth-secp256k1 = { git = "https://github.com/ethcore/rust-secp256k1" }
|
2016-01-17 13:11:25 +01:00
|
|
|
rust-crypto = "0.2.34"
|
|
|
|
elastic-array = "0.4"
|
2016-02-19 00:06:06 +01:00
|
|
|
heapsize = "0.3"
|
2016-01-17 13:11:25 +01:00
|
|
|
itertools = "0.4"
|
2016-01-21 16:48:37 +01:00
|
|
|
crossbeam = "0.2"
|
2016-06-02 11:49:56 +02:00
|
|
|
slab = "0.2"
|
2016-01-18 12:49:39 +01:00
|
|
|
sha3 = { path = "sha3" }
|
2016-07-12 10:34:08 +02:00
|
|
|
clippy = { version = "0.0.79", optional = true}
|
2016-07-06 11:23:29 +02:00
|
|
|
igd = "0.5.0"
|
2016-02-19 15:18:20 +01:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2016-02-16 02:05:36 +01:00
|
|
|
libc = "0.2.7"
|
2016-02-21 21:22:11 +01:00
|
|
|
vergen = "0.1"
|
2016-02-22 09:04:44 +01:00
|
|
|
target_info = "0.1"
|
2016-02-29 22:21:15 +01:00
|
|
|
bigint = { path = "bigint" }
|
2016-03-04 14:23:00 +01:00
|
|
|
chrono = "0.2"
|
2016-07-13 19:59:59 +02:00
|
|
|
parking_lot = "0.2.6"
|
2016-07-06 11:23:29 +02:00
|
|
|
using_queue = { path = "using_queue" }
|
|
|
|
table = { path = "table" }
|
2016-06-29 17:16:58 +02:00
|
|
|
ansi_term = "0.7"
|
2016-02-12 22:01:23 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2016-03-11 11:16:49 +01:00
|
|
|
dev = ["clippy"]
|
2016-02-21 21:14:09 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = "*"
|
2016-03-17 18:41:55 +01:00
|
|
|
rustc_version = "0.1.0"
|