Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// This is free and unencumbered software released into the public domain.

#[allow(unused)]
pub static FEATURES: &[&str] = &[
    #[cfg(feature = "encrypt")]
    "encrypt",
    #[cfg(feature = "gzip")]
    "gzip",
    #[cfg(feature = "lz4")]
    "lz4",
    #[cfg(feature = "tracing")]
    "tracing",
];