Additional arguments passed to cargo during `cargo build`.
(mut self, args: &[impl AsRef<str>])
| 166 | |
| 167 | /// Additional arguments passed to cargo during `cargo build`. |
| 168 | pub fn build_args(mut self, args: &[impl AsRef<str>]) -> Self { |
| 169 | self.build_args |
| 170 | .extend(args.iter().map(|s| s.as_ref().to_owned())); |
| 171 | self |
| 172 | } |
| 173 | |
| 174 | /// Whether to generate any debug info and what level of info to generate. |
| 175 | pub fn debug(mut self, debug: DebugInfo) -> Self { |