//! Ambient CI engine.
//!
//! The [Ambient CI engine](https://ambient.liw.fi/) is both an
//! application and a Rust library. The home page documents the
//! application. This is the documentation for using the Rust
//! library.
#![deny(clippy::unwrap_used)]
#![deny(missing_docs)]
pub mod action;
pub mod action_impl;
pub mod checksummer;
pub mod cloud_init;
pub mod config;
pub mod envs;
pub mod git;
pub mod image_store;
pub mod linter;
pub mod plan;
pub mod project;
pub mod qemu;
pub mod qemu_utils;
pub mod run;
pub mod runlog;
pub mod util;
pub mod vdrive;