1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-18 15:08:24 +00:00
terraform-playground/firecracker-container-vm/Cargo.toml
Cursor Agent 2da9f4095a
Add Docker config auth, Prometheus metrics, and kernel/VMM docs
- Resolve registry credentials from ~/.docker/config.json via docker_credential
  (auths, credHelpers, credsStore)
- Expose /metrics on fc-vhostfsd with bytes saved, startup time, RSS, cache size
- Document VMM frontend options and guest vmlinux requirements

Co-authored-by: Jason Hall <imjasonh@users.noreply.github.com>
2026-06-23 02:19:01 +00:00

46 lines
1.1 KiB
TOML

[workspace]
resolver = "2"
members = [
"crates/fc-oci-fs",
"crates/fc-vhostfsd",
"crates/fc-runner",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Example Contributors"]
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11"
flate2 = "1"
fuse-backend-rs = { version = "0.14", default-features = false, features = ["virtiofs"] }
futures = "0.3"
hex = "0.4"
http = "1"
indexed_deflate = "0.1"
log = "0.4"
oci-distribution = { version = "0.10", default-features = false, features = ["rustls-tls"] }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json", "stream", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
tar = "0.4"
tempfile = "3"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
vhost = "0.16"
vhost-user-backend = "0.22"
virtio-bindings = "0.2"
virtio-queue = "0.17"
vm-memory = "0.17"
vmm-sys-util = "0.15"
libc = "0.2"
docker_credential = "1.4"
criterion = { version = "0.5", features = ["html_reports"] }