diff options
| author | Your Name <you@example.com> | 2026-05-27 16:59:08 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-27 16:59:08 +0530 |
| commit | cd7d6dd7975eff18b49665f6ebcabee78b204f76 (patch) | |
| tree | d8ba012e4b324cb81868b3acdc426b8c2f007614 /Cargo.toml | |
| parent | d889b890f9e63815c178853ed98a1e31f6cec7f8 (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.toml | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -7,7 +7,7 @@ license = "MIT" | |||
| 7 | 7 | ||
| 8 | [dependencies] | 8 | [dependencies] |
| 9 | nostr-sdk = "0.39" | 9 | nostr-sdk = "0.39" |
| 10 | nostr = "0.39" | 10 | nostr = { version = "0.39", features = ["nip04", "nip46"] } |
| 11 | tokio = { version = "1", features = ["full"] } | 11 | tokio = { version = "1", features = ["full"] } |
| 12 | sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } | 12 | sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } |
| 13 | toml = "0.8" | 13 | toml = "0.8" |