2015-11-24 20:57:45 +01:00
|
|
|
[package]
|
2016-01-17 13:11:25 +01:00
|
|
|
description = "Ethcore library"
|
2015-11-24 21:25:07 +01:00
|
|
|
homepage = "http://ethcore.io"
|
|
|
|
license = "GPL-3.0"
|
2016-01-17 13:11:25 +01:00
|
|
|
name = "ethcore"
|
2016-06-25 10:32:05 +02:00
|
|
|
version = "1.3.0"
|
2015-11-24 20:57:45 +01:00
|
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
2016-05-16 18:33:32 +02:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
syntex = "*"
|
|
|
|
"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 13:11:25 +01:00
|
|
|
time = "0.1"
|
2016-01-31 11:08:04 +01:00
|
|
|
ethcore-util = { path = "../util" }
|
|
|
|
evmjit = { path = "../evmjit", optional = true }
|
|
|
|
ethash = { path = "../ethash" }
|
2016-01-17 23:07:58 +01:00
|
|
|
num_cpus = "0.2"
|
2016-07-12 10:34:08 +02:00
|
|
|
clippy = { version = "0.0.79", optional = true}
|
2016-05-17 09:33:01 +02:00
|
|
|
crossbeam = "0.2.9"
|
2016-06-20 00:10:34 +02:00
|
|
|
lazy_static = "0.2"
|
2016-02-19 15:18:20 +01:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2016-03-17 15:15:10 +01:00
|
|
|
ethjson = { path = "../json" }
|
2016-04-30 17:41:24 +02:00
|
|
|
bloomchain = "0.1"
|
2016-07-08 17:26:06 +02:00
|
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
2016-05-31 19:52:53 +02:00
|
|
|
rayon = "0.3.1"
|
2016-06-20 00:10:34 +02:00
|
|
|
ethstore = { path = "../ethstore" }
|
2016-07-07 09:39:32 +02:00
|
|
|
semver = "0.2"
|
|
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
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"]
|
2016-01-31 22:47:24 +01:00
|
|
|
evm-debug = []
|
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 = []
|