2018-03-05 11:56:35 +01:00
|
|
|
[package]
|
|
|
|
description = "DevP2P implementation of the ethcore network library"
|
|
|
|
homepage = "http://parity.io"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-network-devp2p"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2018-03-05 11:56:35 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2019-06-19 12:20:50 +02:00
|
|
|
edition = "2018"
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-03-05 11:56:35 +01:00
|
|
|
mio = "0.6.8"
|
|
|
|
bytes = "0.4"
|
2019-10-18 15:12:16 +02:00
|
|
|
rand = "0.7"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2018-03-05 11:56:35 +01:00
|
|
|
slab = "0.2"
|
2020-02-07 17:23:45 +01:00
|
|
|
igd = "0.10.0"
|
2018-03-05 11:56:35 +01:00
|
|
|
libc = "0.2.7"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2019-06-27 13:34:40 +02:00
|
|
|
ansi_term = "0.11"
|
2018-03-05 11:56:35 +01:00
|
|
|
rustc-hex = "1.0"
|
2018-05-10 12:34:36 +02:00
|
|
|
ethcore-io = { path = "../io", features = ["mio"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
2019-06-19 12:20:50 +02:00
|
|
|
network = { package = "ethcore-network", path = "../network" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-path = "0.1"
|
2018-03-05 11:56:35 +01:00
|
|
|
ipnetwork = "0.12.6"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-snappy = "0.1"
|
2019-06-19 12:20:50 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-03-05 11:56:35 +01:00
|
|
|
serde_json = "1.0"
|
2019-02-12 16:57:53 +01:00
|
|
|
lru-cache = "0.1"
|
2019-12-19 09:01:39 +01:00
|
|
|
natpmp = "0.2"
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
2018-03-05 11:56:35 +01:00
|
|
|
tempdir = "0.3"
|
2018-05-09 15:58:02 +02:00
|
|
|
assert_matches = "1.2"
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|