Cargo.toml 564 B

1234567891011121314151617
  1. [package]
  2. name = "nostr-rs-relayer"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. nostr-rs-types = { path = "../types" }
  8. nostr-rs-storage = { path = "../storage" }
  9. futures-util = "0.3.27"
  10. parking_lot = "0.12.1"
  11. tokio = { version = "1.26.0", features = ["sync", "macros", "rt", "time"] }
  12. tokio-tungstenite = { version = "0.18.0", features = ["rustls", "rustls-native-certs", "rustls-tls-native-roots"] }
  13. thiserror = "1.0.39"
  14. serde_json = "1.0.94"
  15. rand = "0.8.5"