Cargo.toml 583 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "nostr"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [workspace]
  6. members = ["crates/types", "crates/client", "crates/relayer", "crates/storage"]
  7. [dependencies]
  8. nostr-rs-types = { path = "crates/types" }
  9. nostr-rs-client = { path = "crates/client" }
  10. nostr-rs-storage = { path = "crates/storage" }
  11. nostr-rs-relayer = { path = "crates/relayer" }
  12. tokio = { version = "1.26.0", features = ["full"] }
  13. env_logger = "0.10.0"
  14. futures-util = "0.3.27"
  15. log = "0.4.17"
  16. thiserror = "1.0.40"
  17. futures = "0.3.28"
  18. instant-acme = "0.2.0"
  19. serde = "1.0.183"
  20. toml = "0.7.6"
  21. serde_json = "1.0.105"