Skip to content

Commit 54cb055

Browse files
committed
Move match_byte.rs out of src/
1 parent d2cae6c commit 54cb055

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

build.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ mod codegen {
1616
}
1717

1818
#[cfg(not(feature = "dummy_match_byte"))]
19-
#[path = "src/macros/mod.rs"]
20-
mod macros;
19+
#[path = "build/match_byte.rs"]
20+
mod match_byte;
2121

2222
#[cfg(not(feature = "dummy_match_byte"))]
2323
mod codegen {
24-
use macros;
24+
use match_byte;
2525
use std::env;
2626
use std::path::Path;
2727

2828
pub fn main(tokenizer_rs: &Path) {
29-
macros::match_byte::expand(tokenizer_rs,
30-
&Path::new(&env::var("OUT_DIR").unwrap()).join("tokenizer.rs"));
29+
match_byte::expand(tokenizer_rs,
30+
&Path::new(&env::var("OUT_DIR").unwrap()).join("tokenizer.rs"));
3131

3232
}
3333
}
File renamed without changes.

src/macros/mod.rs

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)