Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 127 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,9 @@ strum = { version = "0.28.0", features = ["derive"] }
tokio = "1.52.1"

# https://github.com/fnichol/names/blob/main/CHANGELOG.md
names = "0.14.0"
names = "0.14.0"

# Nostr protocol types + Schnorr signature verification, used by the NIP-98
# HTTP auth extractor
# https://github.com/rust-nostr/nostr/releases
nostr = { version = "0.44.2", default-features = false, features = ["std"] }
1 change: 1 addition & 0 deletions src/rest/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pub mod auth;
pub mod error;
pub mod nostr_auth;
pub mod v2;
pub mod v3;
pub mod v4;
Loading
Loading