photoncloud-monorepo/plasmavmc/crates/plasmavmc-server/Cargo.toml
centra 4ab47b1726
Implement declarative tenant networking and local VM dataplane
Add tenant-scoped PrismNET routing, security-group, port, and service-IP APIs plus a deployer reconciler and Nix module that apply declarative tenant network state.

Teach PlasmaVMC to realize PrismNET NICs as a concrete local worker dataplane with Linux bridges, dnsmasq-backed DHCP, tap devices, richer network metadata, stable managed-volume IDs, and file:// image imports.

Expand the VM cluster validation around the new path, including the guest webapp demo, restart and cross-node migration checks, IAM listener reservation hardening, and a flake workspace-source-root audit so Nix builds keep path dependencies complete.
2026-04-04 00:07:43 +09:00

62 lines
2.2 KiB
TOML

[package]
name = "plasmavmc-server"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "PlasmaVMC control plane server"
[[bin]]
name = "plasmavmc-server"
path = "src/main.rs"
[dependencies]
plasmavmc-types = { workspace = true }
plasmavmc-api = { workspace = true }
plasmavmc-hypervisor = { workspace = true }
plasmavmc-kvm = { workspace = true }
plasmavmc-firecracker = { workspace = true }
iam-service-auth = { path = "../../../iam/crates/iam-service-auth" }
tonic = { workspace = true }
tonic-health = { workspace = true }
prost = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
async-trait = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
thiserror = { workspace = true }
clap = { workspace = true }
dashmap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
sha2 = "0.10"
chainfire-client = { path = "../../../chainfire/chainfire-client" }
creditservice-client = { path = "../../../creditservice/creditservice-client" }
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
prismnet-api = { path = "../../../prismnet/crates/prismnet-api" }
iam-client = { path = "../../../iam/crates/iam-client" }
iam-types = { path = "../../../iam/crates/iam-types" }
lightningstor-api = { path = "../../../lightningstor/crates/lightningstor-api" }
bytes = { workspace = true }
# REST API dependencies
axum = "0.8"
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = { workspace = true }
chrono = "0.4"
iam-api = { path = "../../../iam/crates/iam-api" }
iam-authn = { path = "../../../iam/crates/iam-authn" }
iam-authz = { path = "../../../iam/crates/iam-authz" }
iam-store = { path = "../../../iam/crates/iam-store" }
prismnet-server = { path = "../../../prismnet/crates/prismnet-server" }
prismnet-types = { path = "../../../prismnet/crates/prismnet-types" }
[lints]
workspace = true