photoncloud-monorepo/deployer/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

32 lines
849 B
TOML

[workspace]
resolver = "2"
members = [
"crates/deployer-types",
"crates/deployer-server",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["PhotonCloud Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/centra/plasmacloud"
[workspace.dependencies]
# Internal crates
deployer-types = { path = "crates/deployer-types" }
# External dependencies
tokio = { version = "1.38", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
chrono = { version = "0.4", features = ["serde"] }
# ChainFire client
chainfire-client = { path = "../chainfire/chainfire-client" }