1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! MaulingMonkey's Rust Build Infrastructure

#![cfg_attr(doc_cfg, feature(doc_cfg))]
#![cfg_attr(not(feature = "all"), allow(unused_imports))]


mod macros;

#[path="cargo/_cargo.rs"] pub mod cargo;
#[path="fs/_fs.rs"      ] pub mod fs;

#[doc(hidden)] pub mod _log_impl; // macro implementation details

pub mod cargo_about;
pub mod cargo_web;
mod command_ext;    pub use command_ext::CommandExt;
mod command;        pub use command::Command;
pub mod env;
mod path_ext;       pub use path_ext::PathExt;
pub mod path;
pub mod rustc;
pub mod rustup;     pub use rustup::Rustup;
mod result_ext;     pub use result_ext::ResultExt;
mod version;        #[cfg(feature = "version")] pub use version::Version;
pub mod vscode;
pub mod wasm_bindgen;
pub mod wasm_pack;