openethereum/ethcore/light/Cargo.toml

49 lines
1.4 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-07-13 15:35:29 +02:00
version = "1.8.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[build-dependencies]
"ethcore-ipc-codegen" = { path = "../../ipc/codegen", optional = true }
[dependencies]
log = "0.3"
2016-12-08 19:52:48 +01:00
ethcore = { path = ".."}
ethcore-util = { path = "../../util" }
2017-09-04 16:36:49 +02:00
ethcore-bigint = { path = "../../util/bigint" }
ethcore-bytes = { path = "../../util/bytes" }
memorydb = { path = "../../util/memorydb" }
2017-09-12 19:23:02 +02:00
patricia_trie = { path = "../../util/patricia_trie" }
ethcore-network = { path = "../../util/network" }
ethcore-io = { path = "../../util/io" }
ethcore-ipc = { path = "../../ipc/rpc", optional = true }
2017-03-21 20:57:13 +01:00
ethcore-devtools = { path = "../../devtools" }
evm = { path = "../evm" }
heapsize = "0.4"
vm = { path = "../vm" }
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-08-31 11:35:41 +02:00
hash = { path = "../../util/hash" }
triehash = { path = "../../util/triehash" }
kvdb = { path = "../../util/kvdb" }
kvdb-rocksdb = { path = "../../util/kvdb-rocksdb" }
kvdb-memorydb = { path = "../../util/kvdb-memorydb" }
[features]
2016-12-08 16:46:58 +01:00
default = []
ipc = ["ethcore-ipc", "ethcore-ipc-codegen"]