Cargo.toml 375 B

123456789101112131415161718
  1. [package]
  2. name = "nostr-rs-storage"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. serde_json = "1.0"
  7. nostr-rs-types = { path = "../types" }
  8. thiserror = "1.0.40"
  9. rocksdb = { version = "0.20.1", features = [
  10. "multi-threaded-cf",
  11. "serde",
  12. "snappy",
  13. ] }
  14. rand = "0.8.5"
  15. chrono = "0.4.26"
  16. tokio = { version = "1.32.0", features = ["sync"] }
  17. parking_lot = "0.12.1"