Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / version_check / README.md
blob8637d2ab1db3de20b5a6fd7341f2797166b79a20
1 # version\_check
3 [![Build Status](https://github.com/SergioBenitez/version_check/workflows/CI/badge.svg)](https://github.com/SergioBenitez/version_check/actions)
4 [![Current Crates.io Version](https://img.shields.io/crates/v/version_check.svg)](https://crates.io/crates/version_check)
5 [![rustdocs on docs.rs](https://docs.rs/version_check/badge.svg)](https://docs.rs/version_check)
7 This tiny crate checks that the running or installed `rustc` meets some version
8 requirements. The version is queried by calling the Rust compiler with
9 `--version`. The path to the compiler is determined first via the `RUSTC`
10 environment variable. If it is not set, then `rustc` is used. If that fails, no
11 determination is made, and calls return `None`.
13 ## Usage
15 Add to your `Cargo.toml` file, typically as a build dependency:
17 ```toml
18 [build-dependencies]
19 version_check = "0.9"
20 ```
22 `version_check` is compatible and compiles with Rust 1.0.0 and beyond.
24 ## Examples
26 Set a `cfg` flag in `build.rs` if the running compiler was determined to be
27 at least version `1.13.0`:
29 ```rust
30 extern crate version_check as rustc;
32 if rustc::is_min_version("1.13.0").unwrap_or(false) {
33     println!("cargo:rustc-cfg=question_mark_operator");
35 ```
37 Check that the running compiler was released on or after `2018-12-18`:
39 ```rust
40 extern crate version_check as rustc;
42 match rustc::is_min_date("2018-12-18") {
43     Some(true) => "Yep! It's recent!",
44     Some(false) => "No, it's older.",
45     None => "Couldn't determine the rustc version."
47 ```
49 Check that the running compiler supports feature flags:
51 ```rust
52 extern crate version_check as rustc;
54 match rustc::is_feature_flaggable() {
55     Some(true) => "Yes! It's a dev or nightly release!",
56     Some(false) => "No, it's stable or beta.",
57     None => "Couldn't determine the rustc version."
59 ```
61 See the [rustdocs](https://docs.rs/version_check) for more examples and complete
62 documentation.
64 ## Alternatives
66 This crate is dead simple with no dependencies. If you need something more and
67 don't care about panicking if the version cannot be obtained, or if you don't
68 mind adding dependencies, see [rustc_version]. If you'd instead prefer a feature
69 detection library that works by dynamically invoking `rustc` with a
70 representative code sample, see [autocfg].
72 [rustc_version]: https://crates.io/crates/rustc_version
73 [autocfg]: https://crates.io/crates/autocfg
75 ## License
77 `version_check` is licensed under either of the following, at your option:
79  * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
80  * MIT License ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)