grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The CSS builder module provides flexible CSS generation and processing.
//!
//! Each builder implementation offers:
//! - CSS generation from spells
//! - CSS optimization
//! - Configurable output handling
//!
//! Available implementations:
//! - [`CssBuilderFs`] - File system-based with persistent storage
//! - [`CssBuilderInMemory`] - Entirely in-memory

mod css_builder_base;
mod css_builder_fs;
mod css_builder_in_memory;

pub use css_builder_base::*;
pub use css_builder_fs::*;
pub use css_builder_in_memory::*;