Cargo.toml 520 B

12345678910111213141516171819202122232425
  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. tokio = { version = "1.26.0", features = ["full"] }
  17. env_logger = "0.10.0"
  18. serde_json = "1.0.94"
  19. futures-util = "0.3.27"
  20. log = "0.4.17"
  21. thiserror = "1.0.40"
  22. futures = "0.3.28"
  23. instant-acme = "0.2.0"