summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHermes Agent <hermes@localhost>2026-08-12 00:02:26 +0000
committerHermes Agent <hermes@localhost>2026-08-12 00:02:26 +0000
commit25f39c857da591c665865b77483b79495caf5e00 (patch)
tree1e7dd7118fcd1978b13c8bd1aa6cb202bb72a32a /Cargo.toml
parent1860cc5beb8df6e85d0f9690e5852709a534ebd7 (diff)
Replace legacy profile parser with typed image spec
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 13 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5284bb6..f5568c4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,8 @@
[package]
name = "alt-controller-image"
-version = "0.1.0"
+version = "0.2.0"
edition = "2024"
-description = "Independent Rust/Hasher rootfs image builder for ALT Controller"
+description = "Native Rust image-builder core for ALT Controller"
[lib]
path = "src/lib.rs"
@@ -10,3 +10,14 @@ path = "src/lib.rs"
[[bin]]
name = "alt-controller-image"
path = "src/main.rs"
+
+[dependencies]
+anyhow = "1.0"
+clap = { version = "4.6", features = ["derive"] }
+serde = { version = "1.0", features = ["derive"] }
+toml = "1.0"
+tar = "0.4"
+walkdir = "2.5"
+
+[dev-dependencies]
+tempfile = "3.23"