25 lines
651 B
TOML
25 lines
651 B
TOML
[package]
|
|
description = "Parity LES primitives"
|
|
homepage = "https://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-light"
|
|
version = "1.5.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
"ethcore-ipc-codegen" = { path = "../../ipc/codegen", optional = true }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
ethcore = { path = ".."}
|
|
ethcore-util = { path = "../../util" }
|
|
ethcore-network = { path = "../../util/network" }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-ipc = { path = "../../ipc/rpc", optional = true }
|
|
rlp = { path = "../../util/rlp" }
|
|
time = "0.1"
|
|
|
|
[features]
|
|
default = []
|
|
ipc = ["ethcore-ipc", "ethcore-ipc-codegen"] |