~repos /rust-embed
GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone
https://git.pyrossh.dev/rust-embed.git
Discussions:
https://groups.google.com/g/rust-embed-devs
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
95a6c79e
—
pyros2097 8 years ago
fix typo
- src/lib.rs +1 -1
src/lib.rs
CHANGED
|
@@ -80,7 +80,7 @@ macro_rules! register_macros {
|
|
|
80
80
|
#[plugin_registrar]
|
|
81
81
|
pub fn plugin_registrar(reg: &mut Registry) {
|
|
82
82
|
register_macros!(reg,
|
|
83
|
-
"
|
|
83
|
+
"embed" => embed
|
|
84
84
|
);
|
|
85
85
|
}
|
|
86
86
|
|