actix_cloud_extra/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3#[cfg(feature = "macros")]
4pub mod macros {
5 pub use actix_cloud_extra_macros::*;
6}
7#[cfg(feature = "api")]
8pub mod api;
9#[cfg(feature = "entity")]
10pub mod entity;
11#[cfg(feature = "hyuuid")]
12pub mod hyuuid;
13#[cfg(feature = "logger")]
14pub mod logger;
15#[cfg(feature = "utils")]
16pub mod utils;
17
18#[cfg(feature = "hyuuid")]
19pub use hyuuid::HyUuid;