photoncloud-monorepo/docs/por/T029-practical-app-demo/Cargo.toml
centra 5c6eb04a46 T036: Add VM cluster deployment configs for nixos-anywhere
- 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>
2025-12-11 09:59:19 +09:00

29 lines
638 B
TOML

[package]
name = "plasma-demo-api"
version = "0.1.0"
edition = "2021"
[dependencies]
# HTTP server
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# PlasmaCloud clients
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
iam-client = { path = "../../../iam/crates/iam-client" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
prometheus = "0.13"
# Error handling
anyhow = "1"