photoncloud-monorepo/iam/crates/iam-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

40 lines
1.1 KiB
TOML

[package]
name = "iam-server"
version.workspace = true
edition.workspace = true
description = "IAM server binary"
license.workspace = true
[[bin]]
name = "iam-server"
path = "src/main.rs"
[dependencies]
iam-types = { path = "../iam-types" }
iam-store = { path = "../iam-store" }
iam-authn = { path = "../iam-authn" }
iam-authz = { path = "../iam-authz" }
iam-api = { path = "../iam-api" }
iam-client = { path = "../iam-client" }
chainfire-client = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tokio-stream = { workspace = true, features = ["net"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tonic = { workspace = true }
tonic-health = { workspace = true }
toml = { workspace = true }
clap = { workspace = true }
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
# REST API dependencies
axum = "0.8"
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }