packapp 0.4.0

pack a binary to a MacOS .app bundle
Documentation
1
2
3
4
5
6
7
8
9
10
11
// wengwengweng

mod utils;
mod bundle;
mod err;

pub use bundle::*;
pub use err::Error;

type Result<T> = ::std::result::Result<T, Error>;