From 2fb3bea8f825a08813fa1411d38597cbc9014a97 Mon Sep 17 00:00:00 2001 From: Age Manning Date: Tue, 29 Oct 2024 16:19:44 +1100 Subject: [PATCH] Version bump and dependency update (#273) --- Cargo.toml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c1c3304..e315f4c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "discv5" authors = ["Sigma Prime "] edition = "2018" -version = "0.8.0" +version = "0.9.0" description = "Implementation of the p2p discv5 discovery protocol" license = "Apache-2.0" repository = "https://github.com/sigp/discv5" @@ -12,10 +12,7 @@ categories = ["network-programming", "asynchronous"] exclude = [".gitignore", ".github/*"] [dependencies] -enr = { git = "https://github.com/sigp/enr", branch = "remove-fields", features = [ - "k256", - "ed25519", -] } # enr = { version = "0.12", features = ["k256", "ed25519"] } +enr = { version = "0.13.0", features = [ "k256", "ed25519", ] } # enr = { version = "0.12", features = ["k256", "ed25519"] } tokio = { version = "1", features = ["net", "sync", "macros", "rt"] } libp2p-identity = { version = "0.2", features = [ "ed25519", @@ -25,7 +22,7 @@ multiaddr = { version = "0.18", optional = true } zeroize = { version = "1", features = ["zeroize_derive"] } futures = "0.3" uint = { version = "0.10", default-features = false } -alloy-rlp = { version = "0.3.8", default-features = true } +alloy-rlp = { version = "0.3", default-features = true } # This version must be kept up to date do it uses the same dependencies as ENR hkdf = "0.12" hex = "0.4" @@ -36,8 +33,8 @@ socket2 = "0.5" smallvec = "1" parking_lot = "0.12" lazy_static = "1" -aes = "0.8.4" -ctr = "0.9.2" +aes = "0.8" +ctr = "0.9" aes-gcm = "0.10.3" tracing = { version = "0.1", features = ["log"] } lru = "0.12"