27 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2024-12-12 12:56:09 +00:00
[package]
name = "nostrhole"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.94"
async-compression = { version = "0.4.18", features = ["tokio", "zstd"] }
chrono = "0.4.39"
2024-12-17 10:09:29 +00:00
clap = { version = "4.5.23", features = ["derive"] }
2025-02-05 11:29:56 +00:00
config = { version = "0.15.7", features = ["yaml"] }
2024-12-12 12:56:09 +00:00
log = "0.4.22"
pretty_env_logger = "0.5.0"
sled = "0.34.7"
2025-02-05 11:29:56 +00:00
tokio = { version = "1.42.0", features = ["macros", "fs", "rt", "rt-multi-thread"] }
2024-12-17 10:09:29 +00:00
serde = { version = "1.0.216", features = ["derive"] }
2025-02-05 11:29:56 +00:00
hyper = { version = "1.5", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
base64 = "0.22.1"
itertools = "0.14.0"
2025-02-05 11:39:52 +00:00
nostr-relay-builder = { git = "https://git.v0l.io/nostr/rust-nostr.git", rev = "b5b6c0d422ad3f99d479768bbb011ac7a7cc68f0", package = "nostr-relay-builder" }
nostr-sdk = { git = "https://git.v0l.io/nostr/rust-nostr.git", rev = "b5b6c0d422ad3f99d479768bbb011ac7a7cc68f0", package = "nostr-sdk" }
nostr = { git = "https://git.v0l.io/nostr/rust-nostr.git", rev = "b5b6c0d422ad3f99d479768bbb011ac7a7cc68f0", package = "nostr" }
2025-02-05 11:29:56 +00:00
http-body-util = "0.1.2"
tokio-util = { version = "0.7.13", features = ["io"] }