openethereum/util/network/Cargo.toml

44 lines
980 B
TOML
Raw Normal View History

[package]
description = "Ethcore network library"
2016-12-11 19:43:58 +01:00
homepage = "http://parity.io"
license = "GPL-3.0"
name = "ethcore-network"
2017-10-12 23:44:02 +02:00
version = "1.9.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
log = "0.3"
mio = "0.6.8"
2017-07-06 11:36:15 +02:00
bytes = "0.4"
rand = "0.4"
time = "0.1.34"
2017-08-07 10:06:02 +02:00
tiny-keccak = "1.3"
rust-crypto = "0.2.34"
slab = "0.2"
igd = "0.6"
libc = "0.2.7"
parking_lot = "0.5"
ansi_term = "0.10"
2017-07-06 11:36:15 +02:00
rustc-hex = "1.0"
ethcore-io = { path = "../io" }
ethcore-bytes = { path = "../bytes" }
ethereum-types = "0.2"
ethkey = { path = "../../ethkey" }
ethcrypto = { path = "../../ethcrypto" }
2016-09-01 14:49:12 +02:00
rlp = { path = "../rlp" }
path = { path = "../path" }
ethcore-logger = { path ="../../logger" }
ipnetwork = "0.12.6"
2017-11-10 19:04:55 +01:00
keccak-hash = { path = "../hash" }
snappy = { git = "https://github.com/paritytech/rust-snappy" }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2017-11-13 14:37:08 +01:00
error-chain = { version = "0.11", default-features = false }
[dev-dependencies]
tempdir = "0.3"
[features]
default = []