2016-01-17 13:11:25 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore utility library"
|
2016-12-11 19:43:58 +01:00
|
|
|
homepage = "http://parity.io"
|
2016-01-17 13:11:25 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-util"
|
2017-10-12 23:44:02 +02:00
|
|
|
version = "1.9.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-02-21 21:14:09 +01:00
|
|
|
build = "build.rs"
|
2016-01-17 13:11:25 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
env_logger = "0.4"
|
2017-07-06 11:26:14 +02:00
|
|
|
rustc-hex = "1.0"
|
2017-03-29 15:17:27 +02:00
|
|
|
rocksdb = { git = "https://github.com/paritytech/rust-rocksdb" }
|
|
|
|
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
|
2017-06-28 14:16:53 +02:00
|
|
|
elastic-array = "0.9"
|
2016-09-01 13:36:32 +02:00
|
|
|
rlp = { path = "rlp" }
|
2017-05-24 12:31:33 +02:00
|
|
|
heapsize = "0.4"
|
2017-08-30 16:20:21 +02:00
|
|
|
hash = { path = "hash" }
|
2016-11-28 12:20:57 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
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-22 09:04:44 +01:00
|
|
|
target_info = "0.1"
|
2017-07-06 11:26:14 +02:00
|
|
|
ethcore-bigint = { path = "bigint", features = ["heapsizeof"] }
|
2017-03-28 19:06:08 +02:00
|
|
|
parking_lot = "0.4"
|
2016-08-24 16:53:07 +02:00
|
|
|
tiny-keccak= "1.0"
|
2017-03-22 06:23:40 +01:00
|
|
|
ethcore-logger = { path = "../logger" }
|
2017-09-03 09:11:14 +02:00
|
|
|
triehash = { path = "triehash" }
|
2017-09-06 20:47:45 +02:00
|
|
|
hashdb = { path = "hashdb" }
|
2017-09-12 19:23:02 +02:00
|
|
|
patricia_trie = { path = "patricia_trie" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "bytes" }
|
|
|
|
memorydb = { path = "memorydb" }
|
2017-10-10 20:01:27 +02:00
|
|
|
util-error = { path = "error" }
|
|
|
|
kvdb = { path = "kvdb" }
|
2016-02-12 22:01:23 +01:00
|
|
|
|
2017-10-12 15:36:27 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
kvdb-memorydb = { path = "kvdb-memorydb" }
|
|
|
|
|
2016-02-12 22:01:23 +01:00
|
|
|
[features]
|
|
|
|
default = []
|
2016-03-11 11:16:49 +01:00
|
|
|
dev = ["clippy"]
|
2016-12-17 14:36:30 +01:00
|
|
|
final = []
|
2016-02-21 21:14:09 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2017-09-05 13:08:32 +02:00
|
|
|
vergen = "0.1"
|
2016-03-17 18:41:55 +01:00
|
|
|
rustc_version = "0.1.0"
|