- 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)
43 lines
1.3 KiB
TOML
43 lines
1.3 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 }
|
|
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 }
|
|
chainfire-client = { path = "../../../chainfire/chainfire-client" }
|
|
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
|
|
novanet-api = { path = "../../../novanet/crates/novanet-api" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
chainfire-server = { path = "../../../chainfire/crates/chainfire-server" }
|
|
novanet-server = { path = "../../../novanet/crates/novanet-server" }
|
|
novanet-types = { path = "../../../novanet/crates/novanet-types" }
|
|
|
|
[lints]
|
|
workspace = true
|