2016-08-05 10:32:04 +02:00
|
|
|
[package]
|
|
|
|
description = "Ethcore network library"
|
2016-12-11 19:43:58 +01:00
|
|
|
homepage = "http://parity.io"
|
2016-08-05 10:32:04 +02:00
|
|
|
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>"]
|
2016-08-05 10:32:04 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
2017-06-05 20:40:40 +02:00
|
|
|
mio = "0.6.8"
|
2017-07-06 11:36:15 +02:00
|
|
|
bytes = "0.4"
|
2016-08-05 10:32:04 +02:00
|
|
|
rand = "0.3.12"
|
|
|
|
time = "0.1.34"
|
2017-08-07 10:06:02 +02:00
|
|
|
tiny-keccak = "1.3"
|
2016-08-05 10:32:04 +02:00
|
|
|
rust-crypto = "0.2.34"
|
|
|
|
slab = "0.2"
|
2016-11-28 12:20:57 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
2017-03-28 19:06:08 +02:00
|
|
|
igd = "0.6"
|
2016-08-05 10:32:04 +02:00
|
|
|
libc = "0.2.7"
|
2017-03-28 19:06:08 +02:00
|
|
|
parking_lot = "0.4"
|
2017-03-22 06:23:40 +01:00
|
|
|
ansi_term = "0.9"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-io = { path = "../io" }
|
|
|
|
ethcore-util = { path = ".." }
|
2017-09-04 16:36:49 +02:00
|
|
|
ethcore-bigint = { path = "../bigint" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../bytes" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-devtools = { path = "../../devtools" }
|
2016-08-24 18:35:21 +02:00
|
|
|
ethkey = { path = "../../ethkey" }
|
|
|
|
ethcrypto = { path = "../../ethcrypto" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../rlp" }
|
2017-03-22 06:23:40 +01:00
|
|
|
path = { path = "../path" }
|
|
|
|
ethcore-logger = { path ="../../logger" }
|
2017-07-28 19:06:39 +02:00
|
|
|
ipnetwork = "0.12.6"
|
2017-08-30 17:14:52 +02:00
|
|
|
hash = { path = "../hash" }
|
2017-10-11 09:34:23 +02:00
|
|
|
serde_json = "1.0"
|
2016-08-05 10:32:04 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
dev = ["clippy"]
|