gecko-dev/third_party/rust/rustc_version
Mike Hommey 733f22fb0d Bug 1471096 - Vendor rustc_version. r=froydnj
--HG--
extra : rebase_source : ea0b7697b33e1ec6554ba90a354c8b314293800c
2018-06-26 10:00:26 +09:00
..
src Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
.cargo-checksum.json Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
.travis.yml Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
Cargo.toml Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
LICENSE-APACHE Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
LICENSE-MIT Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00
README.md Bug 1471096 - Vendor rustc_version. r=froydnj 2018-06-26 10:00:26 +09:00

README.md

rustc-version-rs

A library for querying the version of a rustc compiler.

This can be used by build scripts or other tools dealing with Rust sources to make decisions based on the version of the compiler.

Travis-CI Status

Getting Started

rustc-version-rs is available on crates.io. It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.

At the point of the last update of this README, the latest published version could be used like this:

Add the following dependency to your Cargo manifest...

[dependencies]
rustc_version = "0.2"

...and see the docs for how to use it.

Example

// This could be a cargo build script

extern crate rustc_version;
use rustc_version::{version, version_meta, Channel, Version};

fn main() {
    // Assert we haven't travelled back in time
    assert!(version().unwrap().major >= 1);

    // Set cfg flags depending on release channel
    match version_meta().unwrap().channel {
        Channel::Stable => {
            println!("cargo:rustc-cfg=RUSTC_IS_STABLE");
        }
        Channel::Beta => {
            println!("cargo:rustc-cfg=RUSTC_IS_BETA");
        }
        Channel::Nightly => {
            println!("cargo:rustc-cfg=RUSTC_IS_NIGHTLY");
        }
        Channel::Dev => {
            println!("cargo:rustc-cfg=RUSTC_IS_DEV");
        }
    }

    // Check for a minimum version
    if version().unwrap() >= Version::parse("1.4.0").unwrap() {
        println!("cargo:rustc-cfg=compiler_has_important_bugfix");
    }
}

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.