Bundler creates a single-source-file version of a Cargo package.
bash bundle path/to/project >output.rs
```rust extern crate bundler;
fn main() { let code = bundler::bundle("path/to/project"); println!("{}", code); } ```