notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit beece0eb951f3071eaf4de92ed77304714e1f6ca
parent adb3359bd8726299312f091e9efc77a541c1194e
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 17 Mar 2025 11:37:09 -0700

filter: fix memory leak in nostrdb Filter

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
MCargo.lock | 2+-
MCargo.toml | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -2758,7 +2758,7 @@ dependencies = [ [[package]] name = "nostrdb" version = "0.5.1" -source = "git+https://github.com/damus-io/nostrdb-rs?rev=413d7f7e52937774cfc3a0356c8a7788437eecf8#413d7f7e52937774cfc3a0356c8a7788437eecf8" +source = "git+https://github.com/damus-io/nostrdb-rs?rev=22fa1cc57ee1b4ce10e726ab284bc124461c8871#22fa1cc57ee1b4ce10e726ab284bc124461c8871" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml @@ -32,7 +32,7 @@ indexmap = "2.6.0" log = "0.4.17" nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] } mio = { version = "1.0.3", features = ["os-poll", "net"] } -nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "413d7f7e52937774cfc3a0356c8a7788437eecf8" } +nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "22fa1cc57ee1b4ce10e726ab284bc124461c8871" } #nostrdb = "0.5.2" notedeck = { path = "crates/notedeck" } notedeck_chrome = { path = "crates/notedeck_chrome" }