mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-14 15:09:07 -05:00
26 lines
708 B
TOML
26 lines
708 B
TOML
[package]
|
|
name = "nostr-rs-relay"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4.14"
|
|
env_logger = "0.9.0"
|
|
tokio = { version = "1.14.0", features = ["full"] }
|
|
futures = "0.3.18"
|
|
futures-util = "0.3.18"
|
|
tokio-tungstenite = "0.16.0"
|
|
tungstenite = "0.16.0"
|
|
thiserror = "1.0.30"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
|
|
bitcoin_hashes = { version = "0.10.0", features = ["serde"] }
|
|
secp256k1 = { version = "0.20.3", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] }
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
serde_json = "1.0.71"
|
|
serde_repr = "0.1.7"
|
|
base64 = "0.13.0"
|