Cargo.toml 500 B

1234567891011121314151617
  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-memory = { path = "../storage/memory" }
  8. nostr-rs-storage-base = { path = "../storage/base" }
  9. nostr-rs-client = { path = "../client" }
  10. nostr-rs-relayer = { path = "../relayer" }
  11. thiserror = "1.0.39"
  12. url = { version = "2.5.2", features = ["serde"] }
  13. futures = "0.3.30"
  14. tokio = { version = "1.39.2", features = ["full"] }
  15. log = "0.4.22"
  16. env_logger = "0.11.5"