2015-11-24 20:57:23 +01:00
|
|
|
[package]
|
2015-11-24 22:21:15 +01:00
|
|
|
description = "Ethcore library"
|
|
|
|
homepage = "http://ethcore.io"
|
|
|
|
license = "GPL-3.0"
|
2015-11-24 20:57:23 +01:00
|
|
|
name = "ethcore"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
2015-11-24 21:27:10 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2015-11-24 22:21:15 +01:00
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.3"
|
2016-01-07 19:05:44 +01:00
|
|
|
ethcore-util = { path = "../ethcore-util" }
|
2015-12-12 06:05:36 +01:00
|
|
|
rustc-serialize = "0.3"
|
|
|
|
flate2 = "0.2"
|
2016-01-15 02:01:07 +01:00
|
|
|
rocksdb = "0.3"
|
2015-12-16 17:39:15 +01:00
|
|
|
heapsize = "0.2.0"
|
2016-01-08 00:26:52 +01:00
|
|
|
rust-crypto = "0.2.34"
|
2016-01-10 22:55:07 +01:00
|
|
|
time = "0.1"
|
2016-01-12 15:45:40 +01:00
|
|
|
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
|
2015-12-13 22:39:01 +01:00
|
|
|
evmjit = { path = "rust-evmjit", optional = true }
|
2016-01-17 12:00:34 +01:00
|
|
|
ethash = { path = "ethash" }
|
2015-12-05 19:21:07 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
jit = ["evmjit"]
|
2016-01-16 20:11:12 +01:00
|
|
|
evm_debug = []
|