openethereum/util/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

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"
env_logger = "0.4"
rustc-hex = "1.0"
rocksdb = { git = "https://github.com/paritytech/rust-rocksdb" }
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
elastic-array = "0.9"
rlp = { path = "rlp" }
heapsize = "0.4"
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"
ethcore-bigint = { path = "bigint", features = ["heapsizeof"] }
parking_lot = "0.4"
tiny-keccak= "1.0"
ethcore-logger = { path = "../logger" }
triehash = { path = "triehash" }
hashdb = { path = "hashdb" }
2017-09-12 19:23:02 +02:00
patricia_trie = { path = "patricia_trie" }
ethcore-bytes = { path = "bytes" }
memorydb = { path = "memorydb" }
util-error = { path = "error" }
kvdb = { path = "kvdb" }
journaldb = { path = "journaldb" }
2016-02-12 22:01:23 +01: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"]
final = []
2016-02-21 21:14:09 +01:00
[build-dependencies]
2017-09-05 13:08:32 +02:00
vergen = "0.1"
rustc_version = "0.1.0"