Re: `mach cargo check` now available

2017-07-06 Thread Nathan Froyd
On Thu, Jul 6, 2017 at 2:28 AM, Simon Sapin wrote: > Would it make sense to allow arbitrary Cargo sub-commands? In Servo I end up > using `mach cargo update` for manipulating Cargo.lock, `mach cargo rustc` > for passing debugging options to the compiler, etc. Maybe! I'm less sure of how some of

Re: `mach cargo check` now available

2017-07-05 Thread Simon Sapin
On 06/07/2017 03:18, Nathan Froyd wrote: Cargo recently added a subcommand, `cargo check`, to perform type checking of Rust crates without the additional step of code generation. As code generation tends to dominate Rust compilation times, `cargo check` speeds up the edit-borrow checker-bewilder

`mach cargo check` now available

2017-07-05 Thread Nathan Froyd
Cargo recently added a subcommand, `cargo check`, to perform type checking of Rust crates without the additional step of code generation. As code generation tends to dominate Rust compilation times, `cargo check` speeds up the edit-borrow checker-bewilderment cycle. This command is now available