-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Dep update * Improve filtering * Temp commit * Another temp commit * Further progress * Temp commit * Further modifications * More updates * temp changes * More changes * More temp commit * Temp fighting trait generics * Filter trait complete * Temp commit * Compiles * Most tests passing * All tests pass * Add rt to tokio * Further testing and optimisations * Fix typo * Handle all cases of an insert or update * Version bump this update * Enable reading of table status * Make key accessible * Expose connection status * Remove ENR branch * Increase the accessibility of sub-components * Cargo fmt
- Loading branch information
1 parent
fa19557
commit 82c11b2
Showing
22 changed files
with
1,702 additions
and
439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "discv5" | ||
authors = ["Age Manning <[email protected]>"] | ||
edition = "2018" | ||
version = "0.1.0-beta.3" | ||
version = "0.1.0-beta.4" | ||
description = "Implementation of the p2p discv5 discovery protocol" | ||
license = "MIT" | ||
repository = "https://github.com/sigp/discv5" | ||
|
@@ -15,41 +15,42 @@ exclude = [ | |
] | ||
|
||
[dependencies] | ||
enr = { version = "0.5.0", features = ["k256", "ed25519"] } | ||
tokio = { version = "1.1", features = ["net", "sync", "macros"] } | ||
tokio-stream = "0.1.2" | ||
tokio-util = { version = "0.6.2", features = ["time"] } | ||
libp2p-core = { version = "0.27.0", optional = true } | ||
zeroize = { version = "1.1.1", features = ["zeroize_derive"] } | ||
futures = "0.3.8" | ||
uint = { version = "0.9", default-features = false } | ||
rlp = "0.5" | ||
sha2 = "0.9.2" | ||
hkdf = "0.10.0" | ||
hex = "0.4.2" | ||
enr = { version = "0.5.1", features = ["k256", "ed25519"] } | ||
tokio = { version = "1.5.0", features = ["net", "sync", "macros", "rt"] } | ||
tokio-stream = "0.1.5" | ||
tokio-util = { version = "0.6.6", features = ["time"] } | ||
libp2p-core = { version = "0.28.3", optional = true } | ||
zeroize = { version = "1.3.0", features = ["zeroize_derive"] } | ||
futures = "0.3.14" | ||
uint = { version = "0.9.0", default-features = false } | ||
rlp = "0.5.0" | ||
sha2 = "0.9.3" | ||
hkdf = "0.11.0" | ||
hex = "0.4.3" | ||
fnv = "1.0.7" | ||
arrayvec = "0.5.2" | ||
arrayvec = "0.7.0" | ||
digest = "0.9.0" | ||
rand = "0.7.3" | ||
smallvec = "1.5.0" | ||
rand = "0.8.3" | ||
smallvec = "1.6.1" | ||
parking_lot = "0.11.1" | ||
lru_time_cache = "0.11.2" | ||
lru_time_cache = "0.11.10" | ||
lazy_static = "1.4.0" | ||
aes-gcm = "0.8.0" | ||
aes-gcm = "0.9.0" | ||
aes-ctr = "0.6.0" | ||
k256 = { version = "0.7", features = ["zeroize", "ecdh", "sha2"] } | ||
tracing = { version = "0.1.21", features = ["log"] } | ||
tracing-subscriber = "0.2.15" | ||
tracing = { version = "0.1.26", features = ["log"] } | ||
tracing-subscriber = "0.2.18" | ||
lru = "0.6.5" | ||
|
||
[dev-dependencies] | ||
rand_07 = { package = "rand", version = "0.7" } | ||
quickcheck = "0.9.2" | ||
env_logger = "0.8.2" | ||
env_logger = "0.8.3" | ||
hex-literal = "0.3.1" | ||
simple_logger = "1.11.0" | ||
tokio-util = { version = "0.6.2", features = ["time"] } | ||
tokio = { version = "1.1", features = ["full"] } | ||
rand_xorshift = "0.2.0" | ||
rand_core = "0.5.1" | ||
tokio-util = { version = "0.6.6", features = ["time"] } | ||
tokio = { version = "1.5.0", features = ["full"] } | ||
rand_xorshift = "0.3.0" | ||
rand_core = "0.6.2" | ||
|
||
[features] | ||
libp2p = ["libp2p-core"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.