Skip to main content

ambient_ci/
lib.rs

1//! Ambient CI engine.
2//!
3//! The [Ambient CI engine](https://ambient.liw.fi/) is both an
4//! application and a Rust library. The home page documents the
5//! application. This is the documentation for using the Rust
6//! library.
7
8#![deny(clippy::unwrap_used)]
9#![deny(missing_docs)]
10
11pub mod action;
12pub mod action_impl;
13pub mod checksummer;
14pub mod cloud_init;
15pub mod config;
16pub mod git;
17pub mod image_store;
18pub mod linter;
19pub mod plan;
20pub mod project;
21pub mod qemu;
22pub mod qemu_utils;
23pub mod run;
24pub mod runlog;
25pub mod util;
26pub mod vdrive;