openethereum/sync/Cargo.toml

37 lines
996 B
TOML
Raw Normal View History

2016-01-29 15:56:06 +01:00
[package]
description = "Ethcore blockchain sync"
name = "ethsync"
2017-10-12 23:44:02 +02:00
version = "1.9.0"
2016-01-29 15:56:06 +01:00
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
2016-01-29 15:56:06 +01:00
[lib]
[dependencies]
ethcore-bytes = { path = "../util/bytes" }
ethcore-network = { path = "../util/network" }
ethcore-io = { path = "../util/io" }
ethcore-light = { path = "../ethcore/light" }
ethcore-transaction = { path = "../ethcore/transaction" }
ethcore = { path = "../ethcore" }
ethereum-types = "0.1"
plain_hasher = { path = "../util/plain_hasher" }
2016-09-01 14:49:12 +02:00
rlp = { path = "../util/rlp" }
2017-11-10 19:04:55 +01:00
keccak-hash = { path = "../util/hash" }
triehash = { path = "../util/triehash" }
kvdb = { path = "../util/kvdb" }
macros = { path = "../util/macros" }
2016-01-29 15:56:06 +01:00
log = "0.3"
env_logger = "0.4"
2016-02-02 14:54:46 +01:00
time = "0.1.34"
2016-02-05 18:34:08 +01:00
rand = "0.3.13"
heapsize = "0.4"
semver = "0.6"
smallvec = { version = "0.4", features = ["heapsizeof"] }
parking_lot = "0.4"
ipnetwork = "0.12.6"
2016-02-12 22:01:23 +01:00
[dev-dependencies]
ethkey = { path = "../ethkey" }
kvdb-memorydb = { path = "../util/kvdb-memorydb" }