Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rsolomo/cargo-check
https://github.com/rsolomo/cargo-check
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rsolomo/cargo-check
- Owner: rsolomo
- License: apache-2.0
- Created: 2015-07-09T12:39:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T19:03:40.000Z (about 8 years ago)
- Last Synced: 2024-10-10T22:46:40.247Z (3 months ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 98
- Watchers: 7
- Forks: 7
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# cargo-check
[![Build Status](https://travis-ci.org/rsolomo/cargo-check.svg?branch=master)](https://travis-ci.org/rsolomo/cargo-check)
[![](http://meritbadge.herokuapp.com/cargo-check)](https://crates.io/crates/cargo-check)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
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)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.