Cargo.toml 1023 B

12345678910111213141516171819202122232425262728293031323334353637
  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. env_logger = "0.9.0"
  20. futures-util = "0.3.21"
  21. kvraft = { path = "../kvraft" }
  22. lazy_static = "1.4.0"
  23. log = "0.4"
  24. parking_lot = "0.12"
  25. raft = { path = "../raft" }
  26. serde = "1.0"
  27. serde_derive = "1.0"
  28. serde_json = "1.0"
  29. tarpc = { version = ">=0.27,<0.34", features = ["serde-transport", "tcp"] }
  30. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "time", "parking_lot"] }
  31. tokio-serde = { version = "0.8", features = ["json"] }
  32. [dev-dependencies]
  33. reqwest = { version = "0.11", default-features = false, features = ["json"] }
  34. [workspace]