cargo-xwin 0.22.0

Cross compile Cargo project to Windows MSVC target with ease
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cache;
mod compiler;
mod env;
mod macros;
mod options;
mod run;
mod test;

pub use cache::Cache;
pub use env::Env;
pub use macros::{build::Build, check::Check, clippy::Clippy, doc::Doc, rustc::Rustc};
pub use options::XWinOptions;
pub use run::Run;
pub use test::Test;