openethereum/Cargo.toml

31 lines
643 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"
2015-11-24 20:57:45 +01:00
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
2015-11-24 22:21:31 +01:00
[dependencies]
log = "0.3"
env_logger = "0.3"
2016-01-17 13:11:25 +01:00
ethcore-util = { path = "util" }
2015-11-25 19:26:40 +01:00
rustc-serialize = "0.3"
2016-01-17 13:11:25 +01:00
flate2 = "0.2"
2016-01-15 01:57:14 +01:00
rocksdb = "0.3"
2016-01-17 13:11:25 +01:00
heapsize = "0.2.0"
2015-11-29 02:11:56 +01:00
rust-crypto = "0.2.34"
2016-01-17 13:11:25 +01:00
time = "0.1"
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
evmjit = { path = "rust-evmjit", optional = true }
2016-01-17 12:00:34 +01:00
ethash = { path = "ethash" }
2016-01-17 23:07:58 +01:00
num_cpus = "0.2"
2015-12-02 21:49:57 +01:00
2016-01-17 13:11:25 +01:00
[features]
jit = ["evmjit"]
evm_debug = []
[[bin]]
name = "client"
path = "src/bin/client/main.rs"