b5f1524e78
* Add checks for additional reserved ip addresses 100.64.0.0/10 and 240.0.0.0/4 are both reserved but not currently filtered. * Add check for special purpose addresses 192.0.0.0/24 - Used for the IANA IPv4 Special Purpose Address Registry * Refactor ip_utils (#5872) * Add checks for all ipv4 special use addresses * Add comprehensive ipv4 test cases * Refactor Ipv6 address checks (#5872) * Refactor AllowIP (#5872) * Add IpFilter struct to wrap predefined filter (AllowIP) with custom allow/block filters. * Refactor parsing of --allow-ips to handle custom filters. * Move AllowIP/IpFilter from ethsync to ethcore-network where they are used. * Revert Cargo.lock * Tests for custom ip filters (#5872) * Add "none" as a valid argument for --allow-ips to allow narrow custom ranges, eg.: --allow-ips="none 10.0.0.0/8" * Add tests for parsing filter arguments and node endpoints. * Add ipnetwork crate to dev dependencies for testing. * Add ipv6 filter tests (#5872) * Revert parity-ui-precompiled to master * Fix minor detail in usage.txt (#5872) * Spaces to tabs * Rename IpFilter::new() to ::default() * Small readability improvements * Test (#5872) * Revert "Test (#5872)" This reverts commit 7a8906430a6dad633fe29df3dca57f1630851fa9.
40 lines
1007 B
TOML
40 lines
1007 B
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethsync"
|
|
version = "1.8.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[build-dependencies]
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-network = { path = "../util/network" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-light = { path = "../ethcore/light"}
|
|
ethcore = { path = "../ethcore" }
|
|
rlp = { path = "../util/rlp" }
|
|
clippy = { version = "0.0.103", optional = true}
|
|
log = "0.3"
|
|
env_logger = "0.4"
|
|
time = "0.1.34"
|
|
rand = "0.3.13"
|
|
heapsize = "0.4"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.6"
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethkey = { path = "../ethkey" }
|
|
parking_lot = "0.4"
|
|
ipnetwork = "0.12.6"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|
|
ipc = ["ethcore-light/ipc"]
|