2016-12-05 16:56:21 +01:00
|
|
|
[package]
|
|
|
|
description = "Parity LES primitives"
|
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-01-10 15:41:59 +01:00
|
|
|
version = "1.6.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 }
|
2016-12-05 16:56:21 +01:00
|
|
|
rlp = { path = "../../util/rlp" }
|
2016-12-08 13:44:17 +01:00
|
|
|
time = "0.1"
|
2016-12-13 14:48:03 +01:00
|
|
|
smallvec = "0.3.1"
|
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"]
|