photoncloud-monorepo/chainfire/crates/chainfire-core/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

37 lines
1 KiB
TOML

[package]
name = "chainfire-core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Embeddable distributed cluster library with Raft consensus and SWIM gossip"
rust-version.workspace = true
[dependencies]
# Internal crates
chainfire-types = { workspace = true }
chainfire-gossip = { workspace = true }
# Note: chainfire-storage, chainfire-raft, chainfire-watch
# will be added as implementation progresses
# chainfire-storage = { workspace = true }
# chainfire-raft = { workspace = true }
# chainfire-watch = { workspace = true }
# Async runtime
tokio = { workspace = true }
tokio-stream = { workspace = true }
futures = { workspace = true }
async-trait = { workspace = true }
# Utilities
thiserror = { workspace = true }
tracing = { workspace = true }
bytes = { workspace = true }
parking_lot = { workspace = true }
dashmap = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util"] }
tempfile = { workspace = true }
[lints]
workspace = true