wargo 0.5.0

cargo's evil twin to work with projects in the twilight zone of WSL2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../../README.md")]
#![doc(
    test(attr(allow(unused_variables), deny(warnings))),
    // html_favicon_url = "https://raw.githubusercontent.com/asaaki/wargo/main/.assets/favicon.ico",
    html_logo_url = "https://raw.githubusercontent.com/asaaki/wargo/main/.assets/logo-temp.png"
)]
#![cfg_attr(feature = "docs", feature(doc_cfg))]
#![forbid(unsafe_code)]

fn main() -> wargo_lib::NullResult {
    wargo_lib::run("cargo wsl")
}