commit
76c0ceadf9
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,4 +1,4 @@
|
|||||||
[submodule "res/ethereum/tests"]
|
[submodule "ethcore/res/ethereum/tests"]
|
||||||
path = res/ethereum/tests
|
path = ethcore/res/ethereum/tests
|
||||||
url = git@github.com:ethereum/tests
|
url = git@github.com:ethereum/tests
|
||||||
branch = develop
|
branch = develop
|
||||||
|
34
Cargo.toml
34
Cargo.toml
@ -1,30 +1,26 @@
|
|||||||
[package]
|
[package]
|
||||||
description = "Ethcore library"
|
description = "Ethcore client."
|
||||||
homepage = "http://ethcore.io"
|
name = "parity"
|
||||||
|
version = "0.9.0"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
name = "ethcore"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Ethcore <admin@ethcore.io>"]
|
authors = ["Ethcore <admin@ethcore.io>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
env_logger = "0.3"
|
env_logger = "0.3"
|
||||||
ethcore-util = { path = "util" }
|
|
||||||
rustc-serialize = "0.3"
|
rustc-serialize = "0.3"
|
||||||
flate2 = "0.2"
|
docopt = "0.6"
|
||||||
rocksdb = "0.3"
|
docopt_macros = "0.6"
|
||||||
heapsize = "0.2.0"
|
ctrlc = "1.0"
|
||||||
rust-crypto = "0.2.34"
|
|
||||||
time = "0.1"
|
|
||||||
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
|
|
||||||
evmjit = { path = "evmjit", optional = true }
|
|
||||||
ethash = { path = "ethash" }
|
|
||||||
num_cpus = "0.2"
|
|
||||||
clippy = "0.0.37"
|
clippy = "0.0.37"
|
||||||
crossbeam = "0.1.5"
|
ethcore-util = { path = "util" }
|
||||||
lazy_static = "0.1"
|
ethcore = { path = "ethcore" }
|
||||||
|
ethsync = { path = "sync" }
|
||||||
|
ethcore-rpc = { path = "rpc", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
jit = ["evmjit"]
|
rpc = ["ethcore-rpc"]
|
||||||
evm_debug = []
|
|
||||||
test-heavy = []
|
[[bin]]
|
||||||
|
path = "parity/main.rs"
|
||||||
|
name = "parity"
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
[package]
|
|
||||||
description = "Ethcore client."
|
|
||||||
name = "parity"
|
|
||||||
version = "0.9.0"
|
|
||||||
license = "GPL-3.0"
|
|
||||||
authors = ["Ethcore <admin@ethcore.io>"]
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
log = "0.3"
|
|
||||||
env_logger = "0.3"
|
|
||||||
rustc-serialize = "0.3"
|
|
||||||
docopt = "0.6"
|
|
||||||
docopt_macros = "0.6"
|
|
||||||
ctrlc = "1.0"
|
|
||||||
ethcore-util = { path = "../util" }
|
|
||||||
ethcore-rpc = { path = "../rpc", optional = true }
|
|
||||||
ethcore = { path = ".." }
|
|
||||||
ethsync = { path = "../sync" }
|
|
||||||
clippy = "0.0.37"
|
|
||||||
|
|
||||||
[features]
|
|
||||||
rpc = ["ethcore-rpc"]
|
|
30
ethcore/Cargo.toml
Normal file
30
ethcore/Cargo.toml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
[package]
|
||||||
|
description = "Ethcore library"
|
||||||
|
homepage = "http://ethcore.io"
|
||||||
|
license = "GPL-3.0"
|
||||||
|
name = "ethcore"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Ethcore <admin@ethcore.io>"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
log = "0.3"
|
||||||
|
env_logger = "0.3"
|
||||||
|
rustc-serialize = "0.3"
|
||||||
|
flate2 = "0.2"
|
||||||
|
rocksdb = "0.3"
|
||||||
|
heapsize = "0.2.0"
|
||||||
|
rust-crypto = "0.2.34"
|
||||||
|
time = "0.1"
|
||||||
|
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
|
||||||
|
ethcore-util = { path = "../util" }
|
||||||
|
evmjit = { path = "../evmjit", optional = true }
|
||||||
|
ethash = { path = "../ethash" }
|
||||||
|
num_cpus = "0.2"
|
||||||
|
clippy = "0.0.37"
|
||||||
|
crossbeam = "0.1.5"
|
||||||
|
lazy_static = "0.1"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
jit = ["evmjit"]
|
||||||
|
evm_debug = []
|
||||||
|
test-heavy = []
|
@ -27,6 +27,4 @@ slab = { git = "https://github.com/arkpar/slab.git" }
|
|||||||
sha3 = { path = "sha3" }
|
sha3 = { path = "sha3" }
|
||||||
serde = "0.6.7"
|
serde = "0.6.7"
|
||||||
clippy = "0.0.37"
|
clippy = "0.0.37"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
json-tests = { path = "json-tests" }
|
json-tests = { path = "json-tests" }
|
||||||
|
Loading…
Reference in New Issue
Block a user