upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-27 16:59:08 +0530
committerYour Name <you@example.com>2026-05-27 16:59:08 +0530
commitcd7d6dd7975eff18b49665f6ebcabee78b204f76 (patch)
treed8ba012e4b324cb81868b3acdc426b8c2f007614 /Cargo.toml
parentd889b890f9e63815c178853ed98a1e31f6cec7f8 (diff)
Fix compile errors: enable nip04/nip46 features, fix API mismatches
- Cargo.toml: enable nip04 + nip46 features on nostr crate - nip46.rs: secret_key() returns &SecretKey not Result, remove ? operator - nip46.rs: EventBuilder::new takes 2 args, use .tags() for tags - nip46.rs: fix async block in timeout map_err - git_mirror.rs: relay_url is a field not a method
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2c6be46..78130f3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ license = "MIT"
7 7
8[dependencies] 8[dependencies]
9nostr-sdk = "0.39" 9nostr-sdk = "0.39"
10nostr = "0.39" 10nostr = { version = "0.39", features = ["nip04", "nip46"] }
11tokio = { version = "1", features = ["full"] } 11tokio = { version = "1", features = ["full"] }
12sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } 12sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
13toml = "0.8" 13toml = "0.8"