openethereum/ethcore/light/Cargo.toml

38 lines
974 B
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" }
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" }
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"
stats = { path = "../../util/stats" }
[features]
2016-12-08 16:46:58 +01:00
default = []
ipc = ["ethcore-ipc", "ethcore-ipc-codegen"]