e1fef5c732
* update to latest bigint * bump elastic array and deps * fix rlp tests * also update all smallvec deps * fix doc test * reduce parking in attempt to fix CI bug * fix from/into electum bug * remove duplicate imports
35 lines
876 B
TOML
35 lines
876 B
TOML
[package]
|
|
description = "Parity Light Client Implementation"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-light"
|
|
version = "1.7.0"
|
|
authors = ["Parity Technologies <admin@parity.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 }
|
|
ethcore-devtools = { path = "../../devtools" }
|
|
rlp = { path = "../../util/rlp" }
|
|
time = "0.1"
|
|
smallvec = "0.4"
|
|
futures = "0.1"
|
|
rand = "0.3"
|
|
itertools = "0.5"
|
|
bincode = "0.8.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
stats = { path = "../../util/stats" }
|
|
|
|
[features]
|
|
default = []
|
|
ipc = ["ethcore-ipc", "ethcore-ipc-codegen"]
|