photoncloud-monorepo/fiberlb/Cargo.toml
centra a7ec7e2158 Add T026 practical test + k8shost to flake + workspace files
- Created T026-practical-test task.yaml for MVP smoke testing
- Added k8shost-server to flake.nix (packages, apps, overlays)
- Staged all workspace directories for nix flake build
- Updated flake.nix shellHook to include k8shost

Resolves: T026.S1 blocker (R8 - nix submodule visibility)
2025-12-09 06:07:50 +09:00

47 lines
1 KiB
TOML

[workspace]
resolver = "2"
members = [
"crates/fiberlb-types",
"crates/fiberlb-api",
"crates/fiberlb-server",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["FlashDNS Team"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/example/fiberlb"
[workspace.dependencies]
# Internal crates
fiberlb-types = { path = "crates/fiberlb-types" }
fiberlb-api = { path = "crates/fiberlb-api" }
# Async runtime
tokio = { version = "1", features = ["full"] }
# gRPC
tonic = "0.12"
tonic-health = "0.12"
prost = "0.13"
prost-types = "0.13"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive", "env"] }
dashmap = "6"
# Networking (for proxy)
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
[workspace.dependencies.tonic-build]
version = "0.12"