36 lines
728 B
TOML
36 lines
728 B
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "0.1.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
ethcore-util = { path = "util" }
|
|
rustc-serialize = "0.3"
|
|
flate2 = "0.2"
|
|
rocksdb = "0.3"
|
|
heapsize = "0.2.0"
|
|
rust-crypto = "0.2.34"
|
|
time = "0.1"
|
|
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
|
|
evmjit = { path = "rust-evmjit", optional = true }
|
|
ethash = { path = "ethash" }
|
|
num_cpus = "0.2"
|
|
docopt = "0.6"
|
|
docopt_macros = "0.6"
|
|
ctrlc = "1.0"
|
|
clippy = "0.0.37"
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|
|
test-heavy = []
|
|
evm-debug = []
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/bin/client/main.rs"
|