Avoid needless schemas/mod.rs file

This commit is contained in:
Tony Garnock-Jones 2021-08-11 18:04:46 -04:00
parent 5161e54e0d
commit ea75dc8f59
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,11 @@ pub mod error;
pub mod parse;
pub mod path;
pub mod predicate;
pub mod schemas;
pub mod schemas {
include!(concat!(env!("OUT_DIR"), "/src/schemas/mod.rs"));
}
pub mod step;
pub use error::CompilationError;

View File

@ -1 +0,0 @@
include!(concat!(env!("OUT_DIR"), "/src/schemas/mod.rs"));