| 1234567891011121314151617181920212223242526272829303132333435 |
- [package]
- name = "ruaft"
- version = "0.1.0"
- description = "Raft implemented in Rust"
- authors = ["Jing Yang <ditsing@gmail.com>"]
- edition = "2018"
- license = "MIT"
- keywords = ["raft", "consensus-protocol"]
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- bincode = "1.3.1"
- bytes = "1.0"
- crossbeam-utils = "0.8"
- futures-channel = "0.3.8"
- futures-util = "0.3.8"
- labrpc = { path = "../labrpc" }
- parking_lot = "0.11.1"
- rand = "0.8"
- serde = "1.0.116"
- serde_derive = "1.0.116"
- tokio = { version = "1.0", features = ["rt-multi-thread", "time", "parking_lot"] }
- [dev-dependencies]
- anyhow = "1.0"
- futures = { version = "0.3.8", features = ["thread-pool"] }
- scopeguard = "1.1.0"
- kvraft = { path = "kvraft" }
- [workspace]
- members = [
- "kvraft",
- "linearizability",
- ]
|