2016-12-05 16:56:21 +01:00
|
|
|
[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"
|
2016-12-05 16:56:21 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-light"
|
2017-03-07 17:29:27 +01:00
|
|
|
version = "1.7.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-12-05 16:56:21 +01:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2016-12-08 13:44:17 +01:00
|
|
|
"ethcore-ipc-codegen" = { path = "../../ipc/codegen", optional = true }
|
2016-12-05 16:56:21 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
2016-12-08 19:52:48 +01:00
|
|
|
ethcore = { path = ".."}
|
2016-12-05 16:56:21 +01:00
|
|
|
ethcore-util = { path = "../../util" }
|
|
|
|
ethcore-network = { path = "../../util/network" }
|
|
|
|
ethcore-io = { path = "../../util/io" }
|
2016-12-08 13:44:17 +01:00
|
|
|
ethcore-ipc = { path = "../../ipc/rpc", optional = true }
|
2017-03-21 20:57:13 +01:00
|
|
|
ethcore-devtools = { path = "../../devtools" }
|
2016-12-05 16:56:21 +01:00
|
|
|
rlp = { path = "../../util/rlp" }
|
2016-12-08 13:44:17 +01:00
|
|
|
time = "0.1"
|
2017-05-24 12:31:33 +02:00
|
|
|
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"
|
2017-02-06 17:21:35 +01:00
|
|
|
itertools = "0.5"
|
2017-05-23 12:31:09 +02:00
|
|
|
bincode = "0.8.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2017-02-17 17:08:46 +01:00
|
|
|
stats = { path = "../../util/stats" }
|
2016-12-08 13:44:17 +01:00
|
|
|
|
|
|
|
[features]
|
2016-12-08 16:46:58 +01:00
|
|
|
default = []
|
2016-12-13 14:48:03 +01:00
|
|
|
ipc = ["ethcore-ipc", "ethcore-ipc-codegen"]
|