2015-11-24 20:57:45 +01:00
|
|
|
[package]
|
2016-01-17 13:11:25 +01:00
|
|
|
description = "Ethcore library"
|
2016-12-11 19:14:42 +01:00
|
|
|
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-03-07 17:29:27 +01:00
|
|
|
version = "1.7.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-05-16 18:33:32 +02:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
"ethcore-ipc-codegen" = { path = "../ipc/codegen" }
|
2015-11-24 22:21:31 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2016-07-30 15:38:44 +02:00
|
|
|
bit-set = "0.4"
|
2017-04-03 09:40:18 +02:00
|
|
|
bloomchain = "0.1"
|
|
|
|
bn = { git = "https://github.com/paritytech/bn" }
|
2017-02-05 16:17:03 +01:00
|
|
|
byteorder = "1.0"
|
2016-11-28 12:20:57 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
2017-04-03 09:40:18 +02:00
|
|
|
crossbeam = "0.2.9"
|
|
|
|
env_logger = "0.4"
|
|
|
|
ethabi = "1.0.0"
|
2016-07-30 15:38:44 +02:00
|
|
|
ethash = { path = "../ethash" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
2016-02-19 15:18:20 +01:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-io = { path = "../util/io" }
|
2016-07-08 17:26:06 +02:00
|
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
2016-07-07 09:39:32 +02:00
|
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-logger = { path = "../logger" }
|
2017-01-25 11:03:36 +01:00
|
|
|
ethcore-stratum = { path = "../stratum" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-util = { path = "../util" }
|
|
|
|
ethjson = { path = "../json" }
|
|
|
|
ethkey = { path = "../ethkey" }
|
|
|
|
ethstore = { path = "../ethstore" }
|
|
|
|
evmjit = { path = "../evmjit", optional = true }
|
|
|
|
futures = "0.1"
|
2017-02-10 01:07:06 +01:00
|
|
|
hardware-wallet = { path = "../hw" }
|
2017-03-22 07:02:14 +01:00
|
|
|
hyper = { git = "https://github.com/paritytech/hyper", default-features = false }
|
2017-04-03 09:40:18 +02:00
|
|
|
itertools = "0.5"
|
|
|
|
lazy_static = "0.2"
|
|
|
|
linked-hash-map = "0.3.0"
|
|
|
|
log = "0.3"
|
|
|
|
lru-cache = "0.1.0"
|
|
|
|
native-contracts = { path = "native_contracts" }
|
2017-03-21 17:36:38 +01:00
|
|
|
num = "0.1"
|
2017-04-03 09:40:18 +02:00
|
|
|
num_cpus = "1.2"
|
|
|
|
rand = "0.3"
|
|
|
|
rlp = { path = "../util/rlp" }
|
|
|
|
rust-crypto = "0.2.34"
|
|
|
|
rustc-serialize = "0.3"
|
|
|
|
semver = "0.6"
|
|
|
|
stats = { path = "../util/stats" }
|
|
|
|
time = "0.1"
|
|
|
|
transient-hashmap = "0.4"
|
2015-12-02 21:49:57 +01:00
|
|
|
|
2016-01-17 13:11:25 +01:00
|
|
|
[features]
|
|
|
|
jit = ["evmjit"]
|
2016-10-03 23:29:46 +02:00
|
|
|
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 = []
|
2016-07-05 15:15:44 +02:00
|
|
|
benches = []
|
2016-07-20 18:13:56 +02:00
|
|
|
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"]
|