Easily bundle local Rust library files into a single file.
This can be useful when importing or generating Rust code as you can include!
or include_str!
on a single generated file containing all modules.
You can run the program on this library's source files
cargo run --example rust_source_bundler
Given the following files:
project/src/
|- helpers/
| |- inner.rs
| |- mod.rs
|- lib.rs
|- utils.rs
// project/src/lib.rs
pub mod utils;
mod helpers;
use helpers::helper_fn;
pub fn lib_fn() {}
// project/src/utils.rs
pub fn utils_fn() {}
// project/src/helpers/mod.rs
mod inner;
pub use inner::*;
pub fn helper_fn() {}
// project/src/helpers/inner.rs
pub fn inner_fn() {}
You can use this library:
// project/build.rs to generate code on build
fn main() {
let code = rust_source_bundler::bundle_source("./project/src", "lib.rs").unwrap();
println!("{code}");
/* Prints:
pub mod utils {
pub fn utils_fn() {}
}
mod helpers {
mod inner {
pub fn inner_fn() {}
}
pub use inner::*;
pub fn helper_fn() {}
}
use helpers::helper_fn;
pub fn lib_fn() {}
*/
}
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.