[package] description = "Ethcore library" homepage = "http://ethcore.io" license = "GPL-3.0" name = "ethcore" version = "1.3.0" authors = ["Ethcore "] build = "build.rs" [build-dependencies] "ethcore-ipc-codegen" = { path = "../ipc/codegen" } [dependencies] log = "0.3" env_logger = "0.3" rustc-serialize = "0.3" heapsize = "0.3" rust-crypto = "0.2.34" num_cpus = "0.2" crossbeam = "0.2.9" lazy_static = "0.2" bloomchain = "0.1" rayon = "0.3.1" semver = "0.2" bit-set = "0.4" time = "0.1" evmjit = { path = "../evmjit", optional = true } clippy = { version = "0.0.80", optional = true} ethash = { path = "../ethash" } ethcore-util = { path = "../util" } ethcore-io = { path = "../util/io" } ethcore-devtools = { path = "../devtools" } ethjson = { path = "../json" } ethcore-ipc = { path = "../ipc/rpc" } ethstore = { path = "../ethstore" } ethcore-ipc-nano = { path = "../ipc/nano" } [dependencies.hyper] git = "https://github.com/ethcore/hyper" default-features = false [features] jit = ["evmjit"] evm-debug = [] json-tests = [] test-heavy = [] dev = ["clippy"] default = [] benches = [] ipc = []