diffusion_rs/lib.rs
1#![doc = include_str!("../README.md")]
2/// Safer wrapper around stable-diffusion.cpp bindings
3pub mod api;
4
5/// Presets that automatically download models from <https://huggingface.co/>
6pub mod preset;
7
8/// Add additional resources to [preset::Preset]
9pub mod modifier;
10pub(crate) mod preset_builder;
11
12/// Util module
13pub mod util;