cargo-xbuild 0.5.10

Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc.
Documentation
use std::env;
use std::path::{Path, PathBuf};

pub struct Args {
    all: Vec<String>,
    target: Option<String>,
    manifest_path: Option<PathBuf>,
}

impl Args {
    pub fn all(&self) -> &[String] {
        &self.all
    }

    pub fn target(&self) -> Option<&str> {
        self.target.as_ref().map(|s| &**s)
    }

    pub fn manifest_path(&self) -> Option<&Path> {
        self.manifest_path.as_ref().map(|s| &**s)
    }

    pub fn verbose(&self) -> bool {
        self.all
            .iter()
            .any(|a| a == "--verbose" || a == "-v" || a == "-vv")
    }
}

pub fn args(command_name: &str) -> Result<(Command, Args), String> {
    let mut args = env::args().skip(1);
    if args.next() != Some("x".to_string() + command_name) {
        Err(format!(
            "must be invoked as cargo subcommand: `cargo x{}`",
            command_name
        ))?;
    }
    let all = args.collect::<Vec<_>>();
    let command = match all.first().map(|s| s.as_str()) {
        Some("-h") | Some("--help") => Command::Help,
        Some("-v") | Some("--version") => Command::Version,
        _ => Command::Build,
    };

    let mut target = None;
    let mut manifest_path = None;
    {
        let mut args = all.iter();
        while let Some(arg) = args.next() {
            if arg == "--target" {
                target = args.next().map(|s| s.to_owned());
            } else if arg.starts_with("--target=") {
                target = arg.splitn(2, '=').nth(1).map(|s| s.to_owned());
            }
            if arg == "--manifest-path" {
                manifest_path = args.next().map(|s| s.to_owned());
            } else if arg.starts_with("--manifest-path=") {
                manifest_path = arg.splitn(2, '=').nth(1).map(|s| s.to_owned());
            }
        }
    }

    let args = Args {
        all: all,
        target: target,
        manifest_path: manifest_path.as_ref().map(PathBuf::from),
    };
    Ok((command, args))
}

#[derive(Clone, PartialEq)]
pub enum Command {
    Build,
    Help,
    Version,
}