gg-cli 0.39.1

GG - Gui for JJ
1
2
3
4
5
6
7
8
9
10
11
use tauri_build::Attributes;

fn main() {
    // docs.rs mounts the source tree read-only; tauri_build writes to gen/schemas/ which would panic.
    if std::env::var_os("DOCS_RS").is_some() {
        println!("cargo:rustc-cfg=docsrs");
        return;
    }

    tauri_build::try_build(Attributes::new().capabilities_path_pattern("gen")).unwrap()
}