diffusion_rs/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
/// Safer wrapper around stable-diffusion.cpp bindings
pub mod api;

/// Presets that automatically download models from <https://huggingface.co/>
pub mod preset;

/// Add additional resources to [preset::Preset]
pub mod modifier;
pub(crate) mod preset_builder;

/// Util module
pub mod util;