blob: 6e8efd220eba63944fbce48370918ac6651d6dcc (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
use std::env;
use std::ffi;
use std::process;
use std::str;
use crate::build::CargoBuild;
/// The current process' target triplet.
pub const CURRENT_TARGET: &str = include_str!(concat!(env!("OUT_DIR"), "/current_target.txt"));
static CARBO_BIN: once_cell::sync::Lazy<ffi::OsString> =
once_cell::sync::Lazy::new(|| env::var_os("CARGO").unwrap_or_else(|| "cargo".into()));
/// Top-level command.
#[derive(Debug)]
pub struct Cargo {
cmd: process::Command,
}
impl Cargo {
/// Create a top-level command.
pub fn new() -> Self {
Self {
cmd: process::Command::new(CARBO_BIN.as_os_str()),
}
}
/// Manually pass an argument that is unsupported.
///
/// Caution: Passing in a sub-command or `--` can throw off the API.
pub fn arg<S: AsRef<ffi::OsStr>>(mut self, arg: S) -> Self {
self.cmd.arg(arg);
self
}
/// Manually pass arguments that are unsupported.
///
/// Caution: Passing in a sub-command or `--` can throw off the API.
pub fn args<I: IntoIterator<Item = S>, S: AsRef<ffi::OsStr>>(mut self, args: I) -> Self {
self.cmd.args(args);
self
}
/// Run the `build` subcommand.
pub fn build(self) -> CargoBuild {
self.build_with("build")
}
/// Run a custom `build` subcommand.
pub fn build_with<S: AsRef<ffi::OsStr>>(mut self, name: S) -> CargoBuild {
self.cmd.arg(name).arg("--message-format=json");
CargoBuild::with_command(self.cmd)
}
}
impl Default for Cargo {
fn default() -> Self {
Self::new()
}
}
|