openethereum/ethcore/Cargo.toml

32 lines
721 B
TOML
Raw Normal View History

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"
version = "0.9.99"
2015-11-24 20:57:45 +01:00
authors = ["Ethcore <admin@ethcore.io>"]
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-01-15 01:57:14 +01:00
rocksdb = "0.3"
2016-02-18 20:06:59 +01:00
heapsize = { git = "https://github.com/nikvolf/heapsize" }
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-02-18 21:09:36 +01:00
clippy = { version = "0.0.42", optional = true }
crossbeam = "0.1.5"
lazy_static = "0.1"
2015-12-02 21:49:57 +01:00
2016-01-17 13:11:25 +01:00
[features]
jit = ["evmjit"]
evm-debug = []
2016-02-18 20:56:21 +01:00
json-tests = [ "heapsize/nightly" ]
2016-01-21 16:08:09 +01:00
test-heavy = []
2016-02-12 22:01:23 +01:00
dev = ["clippy"]
2016-02-18 20:06:59 +01:00
default = [ "heapsize/nightly" ]