Cargo.toml 695 B

12345678910111213141516171819202122232425
  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-base = { path = "../storage/base" }
  9. nostr-rs-client = { path = "../client" }
  10. futures-util = "0.3.27"
  11. tokio = { version = "1.26.0", features = ["sync", "macros", "rt", "time"] }
  12. tokio-tungstenite = { version = "0.18.0", features = [
  13. "rustls",
  14. "rustls-native-certs",
  15. "rustls-tls-native-roots",
  16. ] }
  17. thiserror = "1.0.39"
  18. serde_json = "1.0.94"
  19. log = "0.4.17"
  20. futures = "0.3.30"
  21. [dev-dependencies]
  22. nostr-rs-memory = { path = "../storage/memory" }