Cargo.toml 958 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "durio"
  3. version = "0.1.0"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. edition = "2018"
  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.0"
  17. futures-util = "0.3.15"
  18. kvraft = { path = "../kvraft" }
  19. lazy_static = "1.4.0"
  20. parking_lot = "0.11.1"
  21. ruaft = { path = "..", features = ["integration-test"] }
  22. serde = "1.0"
  23. serde_derive = "1.0"
  24. serde_json = "1.0"
  25. tarpc = { version = "0.27", features = ["serde-transport", "tcp"] }
  26. test_utils = { path = "../test_utils", default-features = false }
  27. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "time", "parking_lot"] }
  28. tokio-serde = { version = "0.8", features = ["json"] }
  29. warp = "0.3"
  30. [dev-dependencies]