[package]
edition = "2024"
rust-version = "1.95"
name = "firkin-runtime"
version = "0.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production Apple/VZ runtime composition for the firkin Rust containerization library"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/delightful-ai/firkin"
[features]
default = []
snapshot = ["firkin-core/snapshot"]
[lib]
name = "firkin_runtime"
path = "src/lib.rs"
[[test]]
name = "artifact_gc"
path = "tests/artifact_gc.rs"
[[test]]
name = "continuation_snapshot"
path = "tests/continuation_snapshot.rs"
[[test]]
name = "create_from_snapshot"
path = "tests/create_from_snapshot.rs"
[[test]]
name = "disk_pressure"
path = "tests/disk_pressure.rs"
[[test]]
name = "host_scan"
path = "tests/host_scan.rs"
[[test]]
name = "hygiene_maintenance"
path = "tests/hygiene_maintenance.rs"
[[test]]
name = "log_rotation"
path = "tests/log_rotation.rs"
[[test]]
name = "preflight"
path = "tests/preflight.rs"
[[test]]
name = "reconciliation"
path = "tests/reconciliation.rs"
[[test]]
name = "session_terminate"
path = "tests/session_terminate.rs"
[[test]]
name = "stuck_vm_cleanup"
path = "tests/stuck_vm_cleanup.rs"
[[test]]
name = "template_build"
path = "tests/template_build.rs"
[[test]]
name = "warm_pool"
path = "tests/warm_pool.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.firkin-admission]
version = "0.0.3"
[dependencies.firkin-artifacts]
version = "0.0.3"
[dependencies.firkin-core]
version = "0.0.3"
[dependencies.firkin-e2b-contract]
version = "0.0.3"
[dependencies.firkin-e2b-server]
version = "0.0.3"
[dependencies.firkin-e2b-wire]
version = "0.0.3"
[dependencies.firkin-envd]
version = "0.0.3"
[dependencies.firkin-ext4]
version = "0.0.3"
[dependencies.firkin-hygiene]
version = "0.0.3"
[dependencies.firkin-oci]
version = "0.0.3"
[dependencies.firkin-template]
version = "0.0.3"
[dependencies.firkin-trace]
version = "0.0.3"
[dependencies.firkin-types]
version = "0.0.3"
[dependencies.firkin-vminitd-bytes]
version = "0.0.3"
[dependencies.firkin-vmm]
version = "0.0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"net",
"rt",
"sync",
"time",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.prost]
version = "0.13"
[dev-dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"webpki-roots",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt",
]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"