nostr-rs-relay/Cargo.toml

33 lines
980 B
TOML
Raw Normal View History

[package]
name = "nostr-rs-relay"
2022-08-18 20:52:16 -04:00
version = "0.6.2"
edition = "2021"
[dependencies]
2021-12-11 17:58:18 -05:00
log = "^0.4"
env_logger = "^0.9"
2022-02-12 15:10:03 -05:00
tokio = { version = "^1.16", features = ["full"] }
2021-12-11 17:58:18 -05:00
futures = "^0.3"
futures-util = "^0.3"
tokio-tungstenite = "^0.17"
tungstenite = "^0.17"
2021-12-11 17:58:18 -05:00
thiserror = "^1"
uuid = { version = "^0.8", features = ["v4"] }
config = { version = "^0.12", features = ["toml"] }
bitcoin_hashes = { version = "^0.10", features = ["serde"] }
2022-02-12 15:10:03 -05:00
secp256k1 = {version = "^0.21", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] }
2021-12-11 17:58:18 -05:00
serde = { version = "^1.0", features = ["derive"] }
serde_json = {version = "^1.0", features = ["preserve_order"]}
2021-12-11 17:58:18 -05:00
hex = "^0.4"
rusqlite = { version = "^0.26", features = ["limits","bundled"]}
r2d2 = "^0.8"
r2d2_sqlite = "^0.19"
lazy_static = "^1.4"
governor = "^0.4"
nonzero_ext = "^0.3"
hyper = { version="0.14", features=["client", "server","http1","http2","tcp"] }
hyper-tls = "^0.5"
http = { version = "^0.2" }
parse_duration = "^2"
rand = "^0.8"