66477a9476
* fixed encoding 0u8 * simplified if else stmt * tracedb core * more comprehensive tracedb tests * fixed minor review issues * addresses filter * fixed typos * replace malformed with corrupted * trace switch * db key is generic and can be made smaller * smaller tracedb keys * tracedb version * fixed ignored tests * rename Tracedb -> TraceDB * fixed typos * proves * trace only top level calls to builtins to avoid DDoS attacks * fixed tracedb config switches * fix comments fat replaced with trace * vector-addressing scheme for localized traces * removed comments * removed first, redundant 0 from trace address * updated db.trace method * additional tests for tracedb.trace()
34 lines
715 B
TOML
34 lines
715 B
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.1.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
rustc-serialize = "0.3"
|
|
heapsize = "0.3"
|
|
rust-crypto = "0.2.34"
|
|
time = "0.1"
|
|
ethcore-util = { path = "../util" }
|
|
evmjit = { path = "../evmjit", optional = true }
|
|
ethash = { path = "../ethash" }
|
|
num_cpus = "0.2"
|
|
clippy = { version = "0.0.63", optional = true}
|
|
crossbeam = "0.1.5"
|
|
lazy_static = "0.1"
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethjson = { path = "../json" }
|
|
bloomchain = "0.1"
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|
|
evm-debug = []
|
|
json-tests = []
|
|
test-heavy = []
|
|
dev = ["clippy"]
|
|
default = []
|