88997801d0
* Bumping clippy * Fixing warnings * Fix the "fix"
35 lines
780 B
TOML
35 lines
780 B
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethsync"
|
|
version = "1.4.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.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 = { path = "../ethcore" }
|
|
rlp = { path = "../util/rlp" }
|
|
clippy = { version = "0.0.96", optional = true}
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
time = "0.1.34"
|
|
rand = "0.3.13"
|
|
heapsize = "0.3"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
parking_lot = "0.3"
|
|
|
|
[features]
|
|
default = ["ipc"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|
|
ipc = []
|