[package]
edition = "2024"
name = "paros"
version = "0.1.0"
authors = ["Pierre Zemb <contact@pierrezemb.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Learning the Paxos consensus algorithm by implementing it in Rust"
documentation = "https://docs.rs/paros"
readme = "README.md"
keywords = [
"paxos",
"consensus",
"distributed-systems",
"replication",
]
categories = [
"algorithms",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/PierreZ/paros"
[lib]
name = "paros"
path = "src/lib.rs"
[dependencies]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
async_fn_in_trait = "allow"