cargo-bundle 0.10.0

Wrap rust executables in OS-specific app bundles
1
2
3
4
5
6
use crate::Settings;
use std::path::PathBuf;

pub fn bundle_project(_settings: &Settings) -> crate::Result<Vec<PathBuf>> {
    unimplemented!();
}