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-10-12 23:44:02 +02:00
|
|
|
version = "1.9.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2015-11-24 22:21:31 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2017-09-01 16:57:57 +02:00
|
|
|
ansi_term = "0.9"
|
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-07-12 13:09:17 +02:00
|
|
|
common-types = { path = "types" }
|
2017-04-03 09:40:18 +02:00
|
|
|
crossbeam = "0.2.9"
|
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" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../util/bytes" }
|
|
|
|
hashdb = { path = "../util/hashdb" }
|
|
|
|
memorydb = { path = "../util/memorydb" }
|
2017-09-12 19:23:02 +02:00
|
|
|
patricia_trie = { path = "../util/patricia_trie" }
|
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" }
|
|
|
|
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" }
|
2017-09-04 16:36:49 +02:00
|
|
|
ethcore-bigint = { path = "../util/bigint" }
|
2017-10-16 06:05:54 +02:00
|
|
|
memory-cache = { path = "../util/memory_cache" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethjson = { path = "../json" }
|
|
|
|
ethkey = { path = "../ethkey" }
|
|
|
|
ethstore = { path = "../ethstore" }
|
2017-07-12 13:09:17 +02:00
|
|
|
evm = { path = "evm" }
|
2017-04-03 09:40:18 +02:00
|
|
|
futures = "0.1"
|
2017-02-10 01:07:06 +01:00
|
|
|
hardware-wallet = { path = "../hw" }
|
2017-08-30 16:04:47 +02:00
|
|
|
heapsize = "0.4"
|
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"
|
2017-10-05 12:35:01 +02:00
|
|
|
linked-hash-map = "0.5"
|
2017-04-03 09:40:18 +02:00
|
|
|
log = "0.3"
|
2017-10-05 12:35:01 +02:00
|
|
|
lru-cache = "0.1"
|
2017-04-03 09:40:18 +02:00
|
|
|
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"
|
2017-09-26 14:19:08 +02:00
|
|
|
parity-machine = { path = "../machine" }
|
2017-09-02 20:09:13 +02:00
|
|
|
parking_lot = "0.4"
|
2017-07-16 18:22:45 +02:00
|
|
|
price-info = { path = "../price-info" }
|
2017-09-10 18:03:35 +02:00
|
|
|
rayon = "0.8"
|
2017-04-03 09:40:18 +02:00
|
|
|
rand = "0.3"
|
|
|
|
rlp = { path = "../util/rlp" }
|
2017-08-20 06:01:46 +02:00
|
|
|
rlp_derive = { path = "../util/rlp_derive" }
|
2017-10-10 20:01:27 +02:00
|
|
|
kvdb = { path = "../util/kvdb" }
|
2017-10-12 15:36:27 +02:00
|
|
|
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
|
|
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|
2017-10-10 20:01:27 +02:00
|
|
|
util-error = { path = "../util/error" }
|
|
|
|
snappy = { path = "../util/snappy" }
|
|
|
|
migration = { path = "../util/migration" }
|
|
|
|
macros = { path = "../util/macros" }
|
2017-04-03 09:40:18 +02:00
|
|
|
rust-crypto = "0.2.34"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2017-04-03 09:40:18 +02:00
|
|
|
stats = { path = "../util/stats" }
|
|
|
|
time = "0.1"
|
|
|
|
transient-hashmap = "0.4"
|
2017-07-29 17:12:07 +02:00
|
|
|
using_queue = { path = "../util/using_queue" }
|
|
|
|
table = { path = "../util/table" }
|
|
|
|
bloomable = { path = "../util/bloomable" }
|
2017-08-01 12:37:57 +02:00
|
|
|
vm = { path = "vm" }
|
|
|
|
wasm = { path = "wasm" }
|
2017-08-30 19:18:28 +02:00
|
|
|
hash = { path = "../util/hash" }
|
2017-09-03 09:11:14 +02:00
|
|
|
triehash = { path = "../util/triehash" }
|
2017-09-02 13:14:21 +02:00
|
|
|
semantic_version = { path = "../util/semantic_version" }
|
2017-09-05 12:14:03 +02:00
|
|
|
unexpected = { path = "../util/unexpected" }
|
2015-12-02 21:49:57 +01:00
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
native-contracts = { path = "native_contracts", features = ["test_contracts"] }
|
|
|
|
|
2016-01-17 13:11:25 +01:00
|
|
|
[features]
|
2017-07-12 13:09:17 +02:00
|
|
|
jit = ["evm/jit"]
|
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 = []
|