2018-03-05 11:56:35 +01:00
|
|
|
[package]
|
|
|
|
description = "DevP2P implementation of the ethcore network library"
|
2020-09-22 14:53:52 +02:00
|
|
|
homepage = "https://github.com/openethereum/openethereum"
|
2018-03-05 11:56:35 +01:00
|
|
|
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>"]
|
|
|
|
|
|
|
|
[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"
|
|
|
|
rand = "0.4"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2018-03-05 11:56:35 +01:00
|
|
|
rust-crypto = "0.2.34"
|
|
|
|
slab = "0.2"
|
2018-04-10 19:25:27 +02:00
|
|
|
igd = "0.7"
|
2018-03-05 11:56:35 +01:00
|
|
|
libc = "0.2.7"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-03-05 11:56:35 +01:00
|
|
|
ansi_term = "0.10"
|
|
|
|
rustc-hex = "1.0"
|
2021-01-13 18:03:12 +01:00
|
|
|
ethcore-io = { path = "../../runtime/io", features = ["mio"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2019-02-06 17:53:34 +01:00
|
|
|
parity-crypto = "0.3.0"
|
2018-03-05 11:56:35 +01:00
|
|
|
ethcore-network = { path = "../network" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2021-01-13 18:03:12 +01:00
|
|
|
ethkey = { path = "../../../crates/accounts/ethkey" }
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-path = "0.1"
|
2018-03-05 11:56:35 +01:00
|
|
|
ipnetwork = "0.12.6"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
|
|
|
parity-snappy = "0.1"
|
2018-03-05 11:56:35 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2018-06-25 14:20:44 +02:00
|
|
|
error-chain = { version = "0.12", default-features = false }
|
2019-02-12 16:57:53 +01:00
|
|
|
lru-cache = "0.1"
|
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 = []
|