The includer
crate is the library to be used by other libraries/binaries.
This can be considered the "frontend" counterpart to the build time crate that
helps you generate code, [includer_codegen
]. For now it's mostly a simple
type wrapper to get the generated code that's included to compile correctly and
safely.
You would not typically use the types from this library in your codebase, but rather only include them for the generated code to use.
```rust extern crate includer;
use includer::Asset;
// The default file that includercodegen generates include!(concat!(env!("OUTDIR"), "/assets.rs")); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.