Cargo.toml 567 B

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