1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-21 14:58:12 +00:00
terraform-playground/firecracker-container-vm/crates/fc-oci-fs/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

39 lines
1,001 B
TOML

[package]
name = "fc-oci-fs"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
description = "On-demand OCI container image filesystem with gzip zran-style seeking"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
base64.workspace = true
bytes.workspace = true
flate2.workspace = true
fuse-backend-rs = { workspace = true, default-features = false, features = ["virtiofs"] }
hex.workspace = true
http.workspace = true
docker_credential.workspace = true
indexed_deflate.workspace = true
libc.workspace = true
log.workspace = true
oci-distribution.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
tar.workspace = true
thiserror.workspace = true
tokio.workspace = true
[dev-dependencies]
criterion.workspace = true
flate2.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["test-util"] }
[[bench]]
name = "layer_read"
harness = false