openethereum/ethcore/light/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

[package]
2017-03-07 19:48:07 +01:00
description = "Parity Light Client Implementation"
2016-12-11 19:43:58 +01:00
homepage = "http://parity.io"
license = "GPL-3.0"
name = "ethcore-light"
2017-10-12 23:44:02 +02:00
version = "1.9.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
log = "0.3"
2016-12-08 19:52:48 +01:00
ethcore = { path = ".."}
ethcore-bytes = { path = "../../util/bytes" }
ethereum-types = "0.1"
memorydb = { path = "../../util/memorydb" }
patricia-trie = { path = "../../util/patricia_trie" }
ethcore-network = { path = "../../util/network" }
ethcore-io = { path = "../../util/io" }
evm = { path = "../evm" }
hashdb = { path = "../../util/hashdb" }
heapsize = "0.4"
vm = { path = "../vm" }
plain_hasher = { path = "../../util/plain_hasher" }
rlp = { path = "../../util/rlp" }
rlp_derive = { path = "../../util/rlp_derive" }
time = "0.1"
smallvec = "0.4"
2016-12-27 16:43:28 +01:00
futures = "0.1"
2016-12-28 16:20:46 +01:00
rand = "0.3"
itertools = "0.5"
bincode = "0.8.0"
serde = "1.0"
serde_derive = "1.0"
parking_lot = "0.4"
stats = { path = "../../util/stats" }
2017-11-10 19:04:55 +01:00
keccak-hash = { path = "../../util/hash" }
triehash = { path = "../../util/triehash" }
kvdb = { path = "../../util/kvdb" }
kvdb-rocksdb = { path = "../../util/kvdb-rocksdb" }
kvdb-memorydb = { path = "../../util/kvdb-memorydb" }
memory-cache = { path = "../../util/memory_cache" }
2017-11-14 17:47:41 +01:00
[dev-dependencies]
tempdir = "0.3"
[features]
2016-12-08 16:46:58 +01:00
default = []