mirror of
https://github.com/CloudNebulaProject/refraction-forger.git
synced 2026-04-10 13:20:40 +00:00
Move OCI push from builder VM (where GITHUB_TOKEN is unavailable) to the host side. Add --skip-push and --builder-image CLI flags so the build pipeline can be bootstrapped before builder OCI images exist. KDL specs now include public cloud image URLs as default builder images. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
638 B
TOML
25 lines
638 B
TOML
[package]
|
|
name = "forge-builder"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
spec-parser = { workspace = true }
|
|
forge-oci = { workspace = true }
|
|
vm-manager = { workspace = true }
|
|
miette = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
ssh2 = { workspace = true }
|
|
ssh-key = { workspace = true }
|
|
libc = { workspace = true }
|
|
dirs = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tar = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|