- 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
633 B
TOML
25 lines
633 B
TOML
[package]
|
|
name = "plasmavmc-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "gRPC API service implementations for PlasmaVMC"
|
|
|
|
[dependencies]
|
|
plasmavmc-types = { workspace = true }
|
|
plasmavmc-hypervisor = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tonic-health = { workspace = true }
|
|
prost = { workspace = true }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
tonic-build = { workspace = true }
|
|
protoc-bin-vendored = "3.2"
|
|
|
|
[lints]
|
|
workspace = true
|