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
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![warn(
clippy::missing_const_for_fn,
clippy::pedantic,
missing_docs,
unsafe_code
)]
#![allow(
clippy::module_name_repetitions,
clippy::must_use_candidate,
clippy::unnecessary_wraps
)]
#[cfg(feature = "builder")]
pub mod builder;
#[cfg(feature = "link")]
pub mod link;
#[cfg(feature = "permission-calculator")]
pub mod permission_calculator;
#[cfg(feature = "snowflake")]
pub mod snowflake;