rust-embed v8.11.0
git clone https://git.pyrossh.dev/rust-embed
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
76b1709
— Mcat12
2020-02-10T14:32:12-05:00
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)]
|