Cargo.toml 967 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "durio"
  3. version = "0.1.0"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. edition = "2021"
  6. description = "KV store backed by Ruaft, targeting Raspberry Pis."
  7. documentation = ""
  8. readme = "README.md"
  9. homepage = "https://github.com/ditsing/ruaft/tree/master/durio"
  10. repository = "https://github.com/ditsing/ruaft"
  11. license = "MIT"
  12. keywords = ["raft"]
  13. categories = ["raft"]
  14. [dependencies]
  15. async-trait = "0.1"
  16. axum = "0.5.7"
  17. bytes = "1.1"
  18. crossbeam-channel = "0.5.4"
  19. futures-util = "0.3.21"
  20. kvraft = { path = "../kvraft" }
  21. lazy_static = "1.4.0"
  22. log = "0.4"
  23. parking_lot = "0.12"
  24. ruaft = { path = ".." }
  25. serde = "1.0"
  26. serde_derive = "1.0"
  27. serde_json = "1.0"
  28. tarpc = { version = ">=0.27", features = ["serde-transport", "tcp"] }
  29. test_utils = { path = "../test_utils", default-features = false }
  30. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "time", "parking_lot"] }
  31. tokio-serde = { version = "0.8", features = ["json"] }
  32. [dev-dependencies]