- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
43 lines
1.6 KiB
TOML
43 lines
1.6 KiB
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 }
|
|
metrics = { workspace = true }
|
|
metrics-exporter-prometheus = { workspace = true }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
|
|
iam-client = { path = "../../../iam/crates/iam-client" }
|
|
iam-types = { path = "../../../iam/crates/iam-types" }
|
|
fiberlb-api = { path = "../../../fiberlb/crates/fiberlb-api" }
|
|
flashdns-api = { path = "../../../flashdns/crates/flashdns-api" }
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true }
|
|
config = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
plasmavmc-server = { path = "../../../plasmavmc/crates/plasmavmc-server" }
|
|
plasmavmc-api = { path = "../../../plasmavmc/crates/plasmavmc-api" }
|
|
plasmavmc-hypervisor = { path = "../../../plasmavmc/crates/plasmavmc-hypervisor" }
|
|
plasmavmc-kvm = { path = "../../../plasmavmc/crates/plasmavmc-kvm" }
|
|
novanet-server = { path = "../../../novanet/crates/novanet-server" }
|
|
novanet-api = { path = "../../../novanet/crates/novanet-api" }
|
|
flaredb-proto = { path = "../../../flaredb/crates/flaredb-proto" }
|
|
tempfile = "3"
|