Cargo.toml (1090B)
1 [package] 2 name = "nostr-rs-relay" 3 version = "0.7.1" 4 edition = "2021" 5 6 [dependencies] 7 tracing = "0.1.36" 8 tracing-subscriber = "0.2.0" 9 tokio = { version = "1", features = ["full", "tracing", "signal"] } 10 console-subscriber = "0.1.8" 11 futures = "0.3" 12 futures-util = "0.3" 13 tokio-tungstenite = "0.17" 14 tungstenite = "0.17" 15 thiserror = "1" 16 uuid = { version = "1.1.2", features = ["v4"] } 17 config = { version = "0.12", features = ["toml"] } 18 bitcoin_hashes = { version = "0.10", features = ["serde"] } 19 secp256k1 = {version = "0.21", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] } 20 serde = { version = "1.0", features = ["derive"] } 21 serde_json = {version = "1.0", features = ["preserve_order"]} 22 hex = "0.4" 23 rusqlite = { version = "0.26", features = ["limits","bundled"]} 24 r2d2 = "0.8" 25 r2d2_sqlite = "0.19" 26 lazy_static = "1.4" 27 governor = "0.4" 28 nonzero_ext = "0.3" 29 hyper = { version="0.14", features=["client", "server","http1","http2","tcp"] } 30 hyper-tls = "0.5" 31 http = { version = "0.2" } 32 parse_duration = "2" 33 rand = "0.8" 34 const_format = "0.2.28" 35 regex = "1" 36 37 [dev-dependencies] 38 anyhow = "1"