~repos /rust-embed
git clone https://pyrossh.dev/repos/rust-embed.git
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
76b17096
—
Mcat12 5 years ago
Hide the flate macro from docs
- src/lib.rs +1 -0
src/lib.rs
CHANGED
|
@@ -4,6 +4,7 @@ extern crate walkdir;
|
|
|
4
4
|
#[cfg(feature = "compression")]
|
|
5
5
|
extern crate include_flate;
|
|
6
6
|
#[cfg(feature = "compression")]
|
|
7
|
+
#[cfg_attr(feature = "compression", doc(hidden))]
|
|
7
8
|
pub use include_flate::flate;
|
|
8
9
|
|
|
9
10
|
#[allow(unused_imports)]
|