Skip to content
No description, website, or topics provided.
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src
tests
.gitignore
.travis.yml
Cargo.lock
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md

README.md

cargo-check

Build Status

This is a wrapper around cargo rustc -- -Zno-trans. It can be helpful for running a faster compile if you only need correctness checks.

Installation

Install with cargo install cargo-check

Note that additonal cargo rustc options can still be passed through.

In other words, this:

cargo check -v -- -Zprint-link-args

Should do the same thing as this:

cargo rustc -v -- -Zprint-link-args -Zno-trans

If lib or bin targets are present they will be added to cargo rustc automatically.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

You can’t perform that action at this time.