chore: update deps

This commit is contained in:
2025-12-05 08:10:36 +07:00
parent 9fd55cf3ff
commit 6b5adb0a56
2 changed files with 55 additions and 77 deletions

View File

@@ -5,7 +5,7 @@ use std::time::Duration;
use anyhow::{anyhow, Context as AnyhowContext, Error};
use common::{config_dir, BOOTSTRAP_RELAYS, SEARCH_RELAYS};
use gpui::{App, AppContext, Context, Entity, Global, Task};
use nostr_lmdb::NostrLMDB;
use nostr_lmdb::NostrLmdb;
use nostr_sdk::prelude::*;
use smallvec::{smallvec, SmallVec};
use smol::lock::RwLock;
@@ -72,7 +72,7 @@ impl NostrRegistry {
// Construct the lmdb
let lmdb = cx.background_executor().block(async move {
let path = config_dir().join("nostr");
NostrLMDB::open(path)
NostrLmdb::open(path)
.await
.expect("Failed to initialize database")
});