vm-manager/Cargo.toml
Till Wegmueller 4b29883247
Add OCI artifact pull support for QCOW2 images
- Add oci module with pull_qcow2 using oci-client and custom
  QCOW2 media types (vnd.cloudnebula.qcow2.layer.v1)
- Add ImageSource::Oci variant with oci:// URI scheme parsing
- Add pull_oci method to ImageManager with caching
- Add OciPullFailed error variant with miette diagnostics
- Resolves GITHUB_TOKEN auth automatically for ghcr.io

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 16:29:16 +01:00

40 lines
963 B
TOML

[workspace]
resolver = "3"
members = ["crates/vm-manager", "crates/vmctl"]
[workspace.package]
edition = "2024"
license = "MPL-2.0"
rust-version = "1.85"
[workspace.dependencies]
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"signal",
"fs",
"io-util",
"io-std",
"process",
"net",
"time",
] }
miette = { version = "7", features = ["fancy"] }
thiserror = "2"
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls-native-roots",
"stream",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4", "serde"] }
tempfile = "3"
futures-util = "0.3"
zstd = "0.13"
dirs = "6"
kdl = "6"
ssh-key = { version = "0.6", features = ["ed25519", "rand_core", "getrandom"] }
oci-client = "0.15"