Skip to main content

dodot_lib/
lib.rs

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