Cargo.toml 533 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "nostr-rs-client"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. thiserror = "1.0.40"
  7. nostr-rs-types = { path = "../types" }
  8. tokio = { version = "1.26.0", features = ["sync", "macros", "rt", "time"] }
  9. tokio-tungstenite = { version = "0.18.0", features = [
  10. "rustls",
  11. "rustls-native-certs",
  12. "rustls-tls-native-roots",
  13. ] }
  14. url = "2.3.1"
  15. serde_json = "1.0.94"
  16. futures-util = "0.3.27"
  17. parking_lot = "0.12.1"
  18. log = "0.4.17"
  19. futures = "0.3.28"
  20. [dev-dependencies]
  21. nostr-rs-relayer = { path = "../relayer" }