e1fef5c732
* update to latest bigint * bump elastic array and deps * fix rlp tests * also update all smallvec deps * fix doc test * reduce parking in attempt to fix CI bug * fix from/into electum bug * remove duplicate imports
39 lines
986 B
TOML
39 lines
986 B
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethsync"
|
|
version = "1.7.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[build-dependencies]
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-network = { path = "../util/network" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-light = { path = "../ethcore/light"}
|
|
ethcore = { path = "../ethcore" }
|
|
rlp = { path = "../util/rlp" }
|
|
clippy = { version = "0.0.103", optional = true}
|
|
log = "0.3"
|
|
env_logger = "0.4"
|
|
time = "0.1.34"
|
|
rand = "0.3.13"
|
|
heapsize = "0.4"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.6"
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethkey = { path = "../ethkey" }
|
|
parking_lot = "0.4"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|
|
ipc = ["ethcore-light/ipc"]
|