arcbox_docker_tools/lib.rs
1//! ArcBox-managed host tool download, installation, and management.
2//!
3//! Reads tool versions and checksums from `assets.lock`, downloads managed host
4//! binaries (Docker CLI tools, `kubectl`, and future ArcBox-owned helpers),
5//! verifies SHA-256 checksums, and installs them to `~/.arcbox/runtime/bin/`.
6
7pub mod lockfile;
8pub mod manager;
9pub mod registry;
10
11pub use lockfile::{ToolEntry, ToolGroup, parse_tools, parse_tools_for_group};
12pub use manager::{HostToolError, HostToolManager};