[package]
edition = "2024"
name = "noraft"
version = "0.4.0"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal, feature-complete Raft for Rust - no I/O, no dependencies"
homepage = "https://github.com/sile/noraft"
readme = "README.md"
license = "MIT"
repository = "https://github.com/sile/noraft"
[lib]
name = "noraft"
path = "src/lib.rs"
[[test]]
name = "fixed_scenario_test"
path = "tests/fixed_scenario_test.rs"
[[test]]
name = "random_scenario_test"
path = "tests/random_scenario_test.rs"
[dependencies]
[dev-dependencies.rand]
version = "0.10.0"