deps: Add nedded dependencies

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-05-03 15:22:46 +00:00
parent 97c6e4487b
commit d37c6964f7
2 changed files with 2012 additions and 9 deletions

1993
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +1,23 @@
[package] [package]
name = "n34" name = "n34"
description = "A CLI to interact with NIP-34 and other stuff related to codes in nostr" description = "A CLI to interact with NIP-34 and other stuff related to codes in nostr"
version = "0.0.0" version = "0.0.0"
edition = "2024" edition = "2024"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
authors = ["Awiteb <a@4rs.nl>"] authors = ["Awiteb <a@4rs.nl>"]
readme = "README.md" readme = "README.md"
repository = "https://git.4rs.nl/awiteb/n34" repository = "https://git.4rs.nl/awiteb/n34"
keywords = ["nostr", "NIP-34", "CLI"] keywords = ["nostr", "NIP-34", "CLI"]
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
[dependencies] [dependencies]
clap = { version = "4.5.37", features = ["derive"] }
clap-verbosity-flag = { version = "3.0.2", default-features = false, features = [
"tracing",
] }
nostr = { version = "0.41.0", features = ["parser"] }
nostr-sdk = "0.41.0"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"