Cargo.toml 414 B

1234567891011121314
  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"] }