openethereum/ethcore/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

2015-11-24 20:57:45 +01:00
[package]
2016-01-17 13:11:25 +01:00
description = "Ethcore library"
homepage = "http://parity.io"
2015-11-24 21:25:07 +01:00
license = "GPL-3.0"
2016-01-17 13:11:25 +01:00
name = "ethcore"
2017-01-10 15:41:59 +01:00
version = "1.6.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[build-dependencies]
"ethcore-ipc-codegen" = { path = "../ipc/codegen" }
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"
2016-02-19 00:06:06 +01:00
heapsize = "0.3"
2015-11-29 02:11:56 +01:00
rust-crypto = "0.2.34"
2016-01-17 23:07:58 +01:00
num_cpus = "0.2"
2016-05-17 09:33:01 +02:00
crossbeam = "0.2.9"
lazy_static = "0.2"
bloomchain = "0.1"
2016-12-11 17:13:26 +01:00
semver = "0.5"
bit-set = "0.4"
time = "0.1"
rand = "0.3"
byteorder = "0.5"
transient-hashmap = "0.1"
2016-11-16 15:58:14 +01:00
linked-hash-map = "0.3.0"
evmjit = { path = "../evmjit", optional = true }
2016-11-28 12:20:57 +01:00
clippy = { version = "0.0.103", optional = true}
ethash = { path = "../ethash" }
ethcore-util = { path = "../util" }
ethcore-io = { path = "../util/io" }
2016-02-19 15:18:20 +01:00
ethcore-devtools = { path = "../devtools" }
ethjson = { path = "../json" }
ethcore-ipc = { path = "../ipc/rpc" }
ethstore = { path = "../ethstore" }
ethkey = { path = "../ethkey" }
ethcore-ipc-nano = { path = "../ipc/nano" }
rlp = { path = "../util/rlp" }
ethcore-stratum = { path = "../stratum" }
lru-cache = "0.1.0"
ethcore-bloom-journal = { path = "../util/bloom" }
2016-11-13 15:52:33 +01:00
ethabi = "0.2.2"
2015-12-02 21:49:57 +01:00
2016-06-29 20:04:52 +02:00
[dependencies.hyper]
git = "https://github.com/ethcore/hyper"
default-features = false
2016-01-17 13:11:25 +01:00
[features]
jit = ["evmjit"]
evm-debug = ["slow-blocks"]
evm-debug-tests = ["evm-debug"]
slow-blocks = [] # Use SLOW_TX_DURATION="50" (compile time!) to track transactions over 50ms
2016-01-31 20:14:27 +01:00
json-tests = []
2016-01-21 16:08:09 +01:00
test-heavy = []
2016-03-11 11:16:49 +01:00
dev = ["clippy"]
2016-02-19 00:06:06 +01:00
default = []
benches = []
ipc = []
2016-09-07 13:59:14 +02:00
ethkey-cli = ["ethkey/cli"]
2016-09-07 13:49:11 +02:00
ethstore-cli = ["ethstore/cli"]