From f1581676ddda3e393ef9d63530bfdb311db7a045 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Fri, 31 Jan 2025 09:24:00 +0100 Subject: [PATCH] Bump `negentropy` to 0.5 Signed-off-by: Yuki Kishimoto --- CHANGELOG.md | 1 + Cargo.lock | 9 +++++---- Cargo.toml | 3 +-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2a4e0dd0..55a56b395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,6 +70,7 @@ ### Changed * Bump `async-wsocket` to 0.13 ([Yuki Kishimoto]) +* Bump `negentropy` to 0.5 ([Yuki Kishimoto]) * nostr: refactor `PublicKey` to use byte array internally ([Yuki Kishimoto]) * nostr: bump `bip39` to 2.1 ([Yuki Kishimoto]) * nostr: move `types::filter` to `crate::filter` ([Yuki Kishimoto]) diff --git a/Cargo.lock b/Cargo.lock index 1686e3dc8..1adb5378d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2629,8 +2629,9 @@ checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" [[package]] name = "negentropy" -version = "0.4.3" -source = "git+https://github.com/rust-nostr/negentropy?rev=311013ce05dd3f670d9d9c444c09195837837271#311013ce05dd3f670d9d9c444c09195837837271" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d" [[package]] name = "nix" @@ -2779,7 +2780,7 @@ dependencies = [ "base64 0.22.1", "hyper", "hyper-util", - "negentropy 0.4.3", + "negentropy 0.5.0", "nostr", "nostr-database", "tokio", @@ -2795,7 +2796,7 @@ dependencies = [ "async-wsocket", "atomic-destructor", "negentropy 0.3.1", - "negentropy 0.4.3", + "negentropy 0.5.0", "nostr", "nostr-database", "nostr-relay-builder", diff --git a/Cargo.toml b/Cargo.toml index 9734f24e2..2cd145308 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,8 +22,7 @@ async-utility = "0.3" async-wsocket = "0.13" atomic-destructor = { version = "0.3", default-features = false } js-sys = "0.3" -#negentropy = { version = "0.4", default-features = false } -negentropy = { git = "https://github.com/rust-nostr/negentropy", rev = "311013ce05dd3f670d9d9c444c09195837837271", default-features = false } +negentropy = { version = "0.5", default-features = false } negentropy-deprecated = { package = "negentropy", version = "0.3", default-features = false } nostr = { version = "0.38", path = "./crates/nostr", default-features = false } nostr-connect = { version = "0.38", path = "./crates/nostr-connect", default-features = false }