1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
pub mod axum;
pub mod error;
pub mod pagination;
pub mod queried_fields;
pub mod request_id;
pub mod serde;

#[cfg(feature = "ansi")]
pub mod ansi;

#[cfg(feature = "auth")]
pub mod auth;

#[cfg(feature = "config")]
pub mod config;

#[cfg(feature = "tracing")]
pub mod tracing;

#[cfg(feature = "graphql")]
pub mod graphql;

#[cfg(feature = "sqlx")]
pub mod sqlx;

#[cfg(feature = "macros")]
pub use graphql_starter_macros::*;

mod macros;
pub use macros::*;

/// Re-exported crates
pub mod crates {
    #[cfg(feature = "paste")]
    pub mod paste {
        pub use ::paste::*;
    }
}