openethereum/util/network/Cargo.toml

34 lines
760 B
TOML
Raw Normal View History

[package]
description = "Ethcore network library"
homepage = "http://ethcore.io"
license = "GPL-3.0"
name = "ethcore-network"
2016-11-04 17:27:11 +01:00
version = "1.5.0"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]
log = "0.3"
2016-11-23 19:08:21 +01:00
mio = { git = "https://github.com/ethcore/mio" }
2016-10-30 09:56:34 +01:00
bytes = "0.3.0"
rand = "0.3.12"
time = "0.1.34"
tiny-keccak = "1.0"
rust-crypto = "0.2.34"
slab = "0.2"
2016-11-28 12:20:57 +01:00
clippy = { version = "0.0.103", optional = true}
igd = "0.5.0"
libc = "0.2.7"
parking_lot = "0.3"
ansi_term = "0.7"
rustc-serialize = "0.3"
ethcore-io = { path = "../io" }
ethcore-util = { path = ".." }
ethcore-devtools = { path = "../../devtools" }
ethkey = { path = "../../ethkey" }
ethcrypto = { path = "../../ethcrypto" }
2016-09-01 14:49:12 +02:00
rlp = { path = "../rlp" }
[features]
default = []
dev = ["clippy"]