24 lines
579 B
TOML
24 lines
579 B
TOML
[package]
|
|
name = "nostr-relay"
|
|
version = "0.0.4"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.26"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.10"
|
|
secp256k1 = { version = "0.31", features = ["rand"] }
|
|
hex = "0.4"
|
|
rand = "0.9"
|
|
futures-util = "0.3"
|
|
anyhow = "1.0.98"
|
|
log = "0.4.27"
|
|
env_logger = "0.11.8"
|
|
uuid = { version = "1.6.2", features = ["v4"] }
|
|
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "sqlite"] }
|
|
httparse = "1.10.1"
|
|
toml-cfg = "0.2.0"
|
|
once_cell = "1.21.3"
|