stellation_stylist/
lib.rs

1//! The stylist integration for stellation.
2//!
3//! You can check out this [example](https://github.com/futursolo/stellation/tree/main/examples/fullstack) for how to use this crate.
4
5#![deny(clippy::all)]
6#![deny(missing_debug_implementations)]
7#![deny(unsafe_code)]
8#![deny(non_snake_case)]
9#![deny(clippy::cognitive_complexity)]
10#![deny(missing_docs)]
11#![cfg_attr(documenting, feature(doc_cfg))]
12#![cfg_attr(documenting, feature(doc_auto_cfg))]
13#![cfg_attr(any(releasing, not(debug_assertions)), deny(dead_code, unused_imports))]
14
15#[cfg(feature = "backend")]
16mod backend;
17#[cfg(feature = "frontend")]
18mod frontend;
19
20#[cfg(feature = "backend")]
21pub use backend::BackendManagerProvider;
22#[cfg(feature = "frontend")]
23pub use frontend::FrontendManagerProvider;