Skip to main content

dodot_lib/
lib.rs

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