Skip to main content

dodot_lib/
lib.rs

1pub mod commands;
2pub mod config;
3pub mod datastore;
4pub mod error;
5pub mod execution;
6pub mod fs;
7pub mod handlers;
8pub mod operations;
9pub mod packs;
10pub mod paths;
11pub mod render;
12pub mod rules;
13pub mod shell;
14
15// The testing module is available:
16// - Always during `cargo test` (dev-dependencies provide tempfile)
17// - When the `test-utils` feature is enabled (for external consumers)
18#[cfg(any(test, feature = "test-utils"))]
19pub mod testing;
20
21pub use error::{DodotError, Result};