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
//! This crate has a few items reexported by `konst`, and used by `const_panic`.
//!
//! None of the items in this crate are documented,
//! because they are documented in the 0.3 `konst` crate.
//!
//!
#![cfg_attr(feature = "docsrs", feature(doc_cfg))]

mod macros;

pub mod type_eq;

#[doc(hidden)]
pub mod __unsafe_utils;

#[cfg(feature = "rust_1_64")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "rust_1_64")))]
pub mod slice;

#[cfg(feature = "rust_1_64")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "rust_1_64")))]
pub mod string;

#[cfg(feature = "rust_1_64")]
mod utils;

#[doc(hidden)]
pub mod __ {
    pub use core::{
        mem::ManuallyDrop,
        ops::Range,
        option::Option::{self, None, Some},
        result::Result::{self, Err, Ok},
    };
}