Skip to main content

vite_static/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![cfg_attr(docsrs, doc(auto_cfg))]
4#![warn(clippy::pedantic)]
5
6#[cfg(feature = "derive")]
7pub use vite_static_derive::Manifest;
8
9#[cfg(feature = "actix-web")]
10pub use vite_static_actix_web::*;
11
12#[cfg(feature = "html")]
13pub use vite_static_html::*;
14
15pub use vite_static_shared::*;