24 lines
492 B
TOML
24 lines
492 B
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethsync"
|
|
version = "1.1.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
ethcore = { path = "../ethcore" }
|
|
clippy = { version = "0.0.63", optional = true}
|
|
ethminer = { path = "../miner" }
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
time = "0.1.34"
|
|
rand = "0.3.13"
|
|
heapsize = "0.3"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethminer/dev"]
|