paros 0.1.0

Learning the Paxos consensus algorithm by implementing it in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"