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>"]
|
|
|
|
|
|
|
|
[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-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2018-03-05 11:56:35 +01:00
|
|
|
ansi_term = "0.10"
|
|
|
|
rustc-hex = "1.0"
|
2018-05-10 12:34:36 +02:00
|
|
|
ethcore-io = { path = "../io", features = ["mio"] }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
parity-crypto = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-10 13:56:56 +02:00
|
|
|
ethcore-logger = { path ="../../logger" }
|
2018-03-05 11:56:35 +01:00
|
|
|
ethcore-network = { path = "../network" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2018-03-05 11:56:35 +01:00
|
|
|
ethkey = { path = "../../ethkey" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
path = { git = "https://github.com/paritytech/parity-common" }
|
2018-03-05 11:56:35 +01:00
|
|
|
ipnetwork = "0.12.6"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
2018-03-05 11:56:35 +01:00
|
|
|
snappy = { git = "https://github.com/paritytech/rust-snappy" }
|
|
|
|
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 }
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
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 = []
|