~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.
093fce0a
—
LorrensP-2158466 1 month ago
fix export of RustEmbed macro
- src/lib.rs +0 -2
src/lib.rs
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
#[cfg_attr(feature = "compression", doc(hidden))]
|
|
4
4
|
pub use include_flate::flate;
|
|
5
5
|
|
|
6
|
-
#[allow(unused_imports)]
|
|
7
|
-
#[macro_use]
|
|
8
6
|
extern crate rust_embed_impl;
|
|
9
7
|
pub use rust_embed_impl::*;
|
|
10
8
|
|