- 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)
70 lines
1.6 KiB
TOML
70 lines
1.6 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/plasmavmc-types",
|
|
"crates/plasmavmc-api",
|
|
"crates/plasmavmc-hypervisor",
|
|
"crates/plasmavmc-kvm",
|
|
"crates/plasmavmc-firecracker",
|
|
"crates/plasmavmc-server",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
rust-version = "1.75"
|
|
authors = ["PlasmaVMC Contributors"]
|
|
repository = "https://github.com/plasmavmc/plasmavmc"
|
|
|
|
[workspace.dependencies]
|
|
# Internal crates
|
|
plasmavmc-types = { path = "crates/plasmavmc-types" }
|
|
plasmavmc-api = { path = "crates/plasmavmc-api" }
|
|
plasmavmc-hypervisor = { path = "crates/plasmavmc-hypervisor" }
|
|
plasmavmc-kvm = { path = "crates/plasmavmc-kvm" }
|
|
plasmavmc-firecracker = { path = "crates/plasmavmc-firecracker" }
|
|
plasmavmc-server = { path = "crates/plasmavmc-server" }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
|
|
# gRPC
|
|
tonic = "0.12"
|
|
tonic-build = "0.12"
|
|
tonic-health = "0.12"
|
|
prost = "0.13"
|
|
prost-types = "0.13"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Utilities
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
bytes = "1.5"
|
|
dashmap = "6"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
|
|
# Metrics
|
|
metrics = "0.23"
|
|
metrics-exporter-prometheus = "0.15"
|
|
|
|
# Configuration
|
|
toml = "0.8"
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
# Testing
|
|
tempfile = "3.10"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
all = "warn"
|