photoncloud-monorepo/chainfire/crates/chainfire-raft/Cargo.toml
centra 3eeb303dcb feat: Batch commit for T039.S3 deployment
Includes all pending changes needed for nixos-anywhere:
- fiberlb: L7 policy, rule, certificate types
- deployer: New service for cluster management
- nix-nos: Generic network modules
- Various service updates and fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 04:34:51 +09:00

42 lines
904 B
TOML

[package]
name = "chainfire-raft"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "Raft consensus for Chainfire distributed KVS"
[features]
default = ["custom-raft"]
custom-raft = []
[dependencies]
chainfire-types = { workspace = true }
chainfire-storage = { workspace = true }
# Raft
rand = "0.8"
# Async
tokio = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
# Serialization
serde = { workspace = true }
bincode = { workspace = true }
# Utilities
tracing = { workspace = true }
parking_lot = { workspace = true }
dashmap = { workspace = true }
bytes = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
[lints]
workspace = true