rustsourcebundler 0.14.1

Bundle the source code of a rust cargo crate in a single source file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod basic_test {
pub mod internal {
pub fn hello_world() {
    println!("Hello, world!");
}
}
pub fn hello_external_world() {
    println!("Hello, external world!");
}
}
use self::basic_test::hello_external_world;
use self::basic_test::internal::hello_world;
fn main() {
    hello_world();
    hello_external_world();
}