/ src / lib.rs
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  
11  pub mod action;
12  pub mod action_impl;
13  pub mod checksummer;
14  pub mod cloud_init;
15  pub mod config;
16  pub mod git;
17  pub mod image_store;
18  pub mod linter;
19  pub mod plan;
20  pub mod project;
21  pub mod qemu;
22  pub mod qemu_utils;
23  pub mod run;
24  pub mod runlog;
25  pub mod util;
26  pub mod vdrive;