10 unstable releases (3 breaking)

0.4.0 Jun 7, 2021
0.3.3 Jan 18, 2021
0.3.0 Oct 28, 2020
0.2.3 Aug 3, 2018
0.1.4 Sep 30, 2015

#8 in Build Utils

Download history 619793/week @ 2023-12-23 981455/week @ 2023-12-30 1253587/week @ 2024-01-06 1301579/week @ 2024-01-13 1356487/week @ 2024-01-20 1368952/week @ 2024-01-27 1390867/week @ 2024-02-03 1417609/week @ 2024-02-10 1383241/week @ 2024-02-17 1478639/week @ 2024-02-24 1519809/week @ 2024-03-02 1544653/week @ 2024-03-09 1584360/week @ 2024-03-16 1545276/week @ 2024-03-23 1621357/week @ 2024-03-30 1343474/week @ 2024-04-06

6,353,606 downloads per month
Used in 14,750 crates (563 directly)

MIT/Apache

18KB
267 lines

rustc-version-rs

Documentation Crates.io Build status

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. Current MSRV is 1.32.0.

If this is of interest, also consider looking at these other crates:

  • autocfg, which helps with feature detection instead of depending on compiler versions
  • rustversion provides a procedural macro with no other dependencies

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...

[build-dependencies]
rustc_version = "0.2"

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

Example

// This could be a cargo build script

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.

Dependencies

~74KB