diff --git a/implementations/rust/preserves-path/src/lib.rs b/implementations/rust/preserves-path/src/lib.rs index c36c68b..00a4a73 100644 --- a/implementations/rust/preserves-path/src/lib.rs +++ b/implementations/rust/preserves-path/src/lib.rs @@ -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; diff --git a/implementations/rust/preserves-path/src/schemas/mod.rs b/implementations/rust/preserves-path/src/schemas/mod.rs deleted file mode 100644 index ff86a90..0000000 --- a/implementations/rust/preserves-path/src/schemas/mod.rs +++ /dev/null @@ -1 +0,0 @@ -include!(concat!(env!("OUT_DIR"), "/src/schemas/mod.rs"));