Home
last modified time | relevance | path

Searched defs:CargoOut (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/development/tools/cargo_embargo/src/cargo/
H A Dcargo_out.rs146 struct CargoOut { struct
147 rustc_invocations: Vec<String>,
150 cc_invocations: BTreeMap<String, String>,
151 ar_invocations: BTreeMap<String, String>,
178 impl CargoOut { argument
180 fn parse(contents: &str) -> Result<CargoOut> { in parse()