nostr-api/Cargo.toml

18 lines
534 B
TOML
Raw Permalink Normal View History

2024-08-08 18:29:40 +01:00
[package]
name = "nostr_services_rs"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.38.1", features = ["rt", "rt-multi-thread", "macros"] }
2024-08-16 23:06:56 +01:00
nostr = { version = "0.34.0" }
nostr-sdk = { version = "0.34.0" }
2024-08-08 18:29:40 +01:00
rocket = { version = "0.5.1", features = ["json"] }
serde = { version = "1.0.204", features = ["derive"] }
log = "0.4.22"
pretty_env_logger = "0.5.0"
anyhow = "1.0.86"
2024-08-16 23:06:56 +01:00
nostr-database = { version = "0.34.0", features = ["flatbuf"] }
2024-08-08 18:29:40 +01:00
sled = "0.34.7"
2024-08-16 23:06:56 +01:00
config = { version = "0.14.0", features = ["toml"] }