bundler 0.1.0

Creates a single-source-file version of a Cargo package.
Documentation

rust-bundler

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

Usage

bundle path/to/project >output.rs

Library Usage

extern crate bundler;

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

Similar Projects