I have the following file structure:
src/
lib.rs
foo.rs
build.rs
I would like to import something from foo.rs (lib.rs has pub mod foo in it already) into build.rs. (I'm trying to import a type in order to generate some JSON schema at build time)
Is this possible?