- 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)
25 lines
714 B
TOML
25 lines
714 B
TOML
[package]
|
|
name = "k8shost-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "k8shost-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
k8shost-types = { path = "../k8shost-types" }
|
|
k8shost-proto = { path = "../k8shost-proto" }
|
|
tokio = { workspace = true }
|
|
tokio-stream = "0.1"
|
|
tonic = { workspace = true }
|
|
prost = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
|
|
iam-client = { path = "../../../iam/crates/iam-client" }
|
|
chrono = { workspace = true }
|