Cargo.toml 764 B

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