62210fb932
* lifetime issues * refactor to new 'native env' * descriptors and such * wasm mvp continued * finalized env/ext bindings * descriptor -> call_args * inject gas counter * result processing and engine activation * tabify some source files * needs return new * wasm tests initial * erradicate warnings * origin in the descriptor * update test repo * payload verification tests * identity return payload test * some test description * dispersion test * check length here * suicidal contract * engine params * fix typo * review fixes * submodule update * update - purge reserved space * doc effort * more review fixes * fix error message * fix dependency url * reorg error handling * update submodule * update utils * update to latest parity-wasm * tabify * fix wasm magic header * update dependencies * external create and tests * update to latest tests * extra trace info * Update parity-wasm * update wasm-utils also * few traces and result handle change * alter trace content * fix issues with optimizer, update to latest parity with validator, etc * static initialization * license preamble * update wasm crates and gas costs * fix grumbles * bring back lifetime * fix compilation
72 lines
2.0 KiB
TOML
72 lines
2.0 KiB
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.7.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
"ethcore-ipc-codegen" = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
bloomchain = "0.1"
|
|
bn = { git = "https://github.com/paritytech/bn" }
|
|
byteorder = "1.0"
|
|
clippy = { version = "0.0.103", optional = true}
|
|
crossbeam = "0.2.9"
|
|
env_logger = "0.4"
|
|
ethabi = "2.0"
|
|
ethash = { path = "../ethash" }
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
ethcore-util = { path = "../util" }
|
|
ethjson = { path = "../json" }
|
|
ethkey = { path = "../ethkey" }
|
|
ethstore = { path = "../ethstore" }
|
|
evmjit = { path = "../evmjit", optional = true }
|
|
futures = "0.1"
|
|
hardware-wallet = { path = "../hw" }
|
|
hyper = { git = "https://github.com/paritytech/hyper", default-features = false }
|
|
itertools = "0.5"
|
|
lazy_static = "0.2"
|
|
linked-hash-map = "0.3.0"
|
|
log = "0.3"
|
|
lru-cache = "0.1.0"
|
|
native-contracts = { path = "native_contracts" }
|
|
num = "0.1"
|
|
num_cpus = "1.2"
|
|
rand = "0.3"
|
|
rlp = { path = "../util/rlp" }
|
|
rust-crypto = "0.2.34"
|
|
rustc-hex = "1.0"
|
|
rustc-serialize = "0.3"
|
|
semver = "0.6"
|
|
stats = { path = "../util/stats" }
|
|
time = "0.1"
|
|
transient-hashmap = "0.4"
|
|
parity-wasm = { git = "https://github.com/nikvolf/parity-wasm" }
|
|
wasm-utils = { git = "https://github.com/paritytech/wasm-utils" }
|
|
|
|
[dev-dependencies]
|
|
native-contracts = { path = "native_contracts", features = ["test_contracts"] }
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|
|
evm-debug = ["slow-blocks"]
|
|
evm-debug-tests = ["evm-debug"]
|
|
slow-blocks = [] # Use SLOW_TX_DURATION="50" (compile time!) to track transactions over 50ms
|
|
json-tests = []
|
|
test-heavy = []
|
|
dev = ["clippy"]
|
|
default = []
|
|
benches = []
|
|
ipc = []
|