astrid 0.10.1

Command-line interface for Astrid secure agent runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Distro manifest parsing and lockfile management.
//!
//! A distro manifest (`Distro.toml`) declares a curated bundle of capsules.
//! The lockfile (`Distro.lock`) pins exact resolved versions and BLAKE3 hashes
//! for reproducible installs.

pub(crate) mod lock;
pub(crate) mod manifest;
pub(crate) mod seal;
pub(crate) mod shuttle;
pub(crate) mod shuttle_install;
pub(crate) mod sign;
pub(crate) mod trust;
pub(crate) mod validate;