Cargo.toml 1.0 KB

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. bytes = "1.1"
  17. crossbeam-channel = "0.5.4"
  18. futures-util = "0.3.21"
  19. kvraft = { path = "../kvraft" }
  20. lazy_static = "1.4.0"
  21. log = "0.4"
  22. parking_lot = "0.12"
  23. ruaft = { path = "..", features = ["integration-test"] }
  24. serde = "1.0"
  25. serde_derive = "1.0"
  26. serde_json = "1.0"
  27. tarpc = { version = ">=0.27", features = ["serde-transport", "tcp"] }
  28. test_utils = { path = "../test_utils", default-features = false }
  29. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "time", "parking_lot"] }
  30. tokio-serde = { version = "0.8", features = ["json"] }
  31. warp = { version = "0.3", default-features = false, features = []}
  32. [dev-dependencies]