rust-bundler

Bundler creates a single-source-file version of a Cargo package.

Usage

bash bundle path/to/project >output.rs

Library Usage

```rust extern crate bundler;

fn main() { let code = bundler::bundle("path/to/project"); println!("{}", code); } ```

Similar Projects