Cargo.toml 475 B

123456789101112131415161718192021
  1. [package]
  2. name = "nostr"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [workspace]
  6. members = [
  7. "crates/types",
  8. "crates/client"
  9. ]
  10. [dependencies]
  11. nostr-rs-types = { path = "crates/types" }
  12. nostr-rs-client = { path = "crates/client" }
  13. tokio = { version = "1.26.0", features = ["full"] }
  14. env_logger = "0.10.0"
  15. serde_json = "1.0.94"
  16. sqlx = { version = "0.6.2", features = ["sqlite", "runtime-tokio-native-tls"] }
  17. futures-util = "0.3.27"
  18. thiserror = "1.0.40"
  19. parking_lot = "0.12.1"