We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2cae6c commit 54cb055Copy full SHA for 54cb055
build.rs
@@ -16,18 +16,18 @@ mod codegen {
16
}
17
18
#[cfg(not(feature = "dummy_match_byte"))]
19
-#[path = "src/macros/mod.rs"]
20
-mod macros;
+#[path = "build/match_byte.rs"]
+mod match_byte;
21
22
23
mod codegen {
24
- use macros;
+ use match_byte;
25
use std::env;
26
use std::path::Path;
27
28
pub fn main(tokenizer_rs: &Path) {
29
- macros::match_byte::expand(tokenizer_rs,
30
- &Path::new(&env::var("OUT_DIR").unwrap()).join("tokenizer.rs"));
+ match_byte::expand(tokenizer_rs,
+ &Path::new(&env::var("OUT_DIR").unwrap()).join("tokenizer.rs"));
31
32
33
src/macros/match_byte.rs renamed to build/match_byte.rs
src/macros/mod.rs
0 commit comments