Cargo.toml 541 B

12345678910111213141516171819
  1. [package]
  2. name = "nostr-rs-personal-relayer"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. nostr-rs-types = { path = "../types" }
  7. nostr-rs-storage-base = { path = "../storage/base" }
  8. nostr-rs-client = { path = "../client" }
  9. nostr-rs-relayer = { path = "../relayer" }
  10. thiserror = "1.0.39"
  11. url = { version = "2.5.2", features = ["serde"] }
  12. futures = "0.3.30"
  13. tokio = { version = "1.39.2", features = ["full"] }
  14. nostr-rs-memory = { path = "../storage/memory" }
  15. serde = "1.0.208"
  16. serde_json = "1.0.125"
  17. log = "0.4.22"
  18. env_logger = "0.11.5"