crate-ci / azure-pipelines

Easy continuous integration for Rust projects with Azure Pipelines
MIT License
88 stars 24 forks source link

Replaced deprecated cargo `--all` flag with `--workspace` flag #71

Open SamedhG opened 4 years ago

SamedhG commented 4 years ago

Cargo check -h shows that the --all flag has been depreacated and replaced with the --workspace flag. Also https://github.com/rust-lang/cargo/issues/5015 shows hat the --no-default-features is currently broken so we thought that this part of the pipeline should be deleted (at least until this gets fixed) from the cargo-check.yml file.

djc commented 4 years ago

So I suppose this should be parametrized on the Rust version? Otherwise old Rust versions won't work. Otherwise looks okay to me.