- 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)
33 lines
842 B
TOML
33 lines
842 B
TOML
[package]
|
|
name = "fiberlb-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "fiberlb"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
fiberlb-types = { workspace = true }
|
|
fiberlb-api = { workspace = true }
|
|
chainfire-client = { path = "../../../chainfire/chainfire-client" }
|
|
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
|
|
|
|
tokio = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tonic-health = { workspace = true }
|
|
prost = { workspace = true }
|
|
prost-types = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
clap = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|