Skip to content

Commit 7d289b1

Browse files
committed
Auto merge of #10713 - flip1995:rust-version-env, r=epage
Expose rust-version through env var This adds another env var that is exposed by cargo. In Clippy we would like to use that in order to efficiently check if a rust-version is set for the current package: rust-lang/rust-clippy#8774 Currently we either have to parse the `Cargo.toml` file ourselves or use the `cargo_metadata` crate which has a notable performance impact when running `clippy-driver` on single files.
2 parents a9efb06 + 0852f54 commit 7d289b1

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

src/cargo/core/compiler/compilation.rs

+4
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,10 @@ impl<'cfg> Compilation<'cfg> {
347347
metadata.license_file.as_ref().unwrap_or(&String::new()),
348348
)
349349
.env("CARGO_PKG_AUTHORS", &pkg.authors().join(":"))
350+
.env(
351+
"CARGO_PKG_RUST_VERSION",
352+
&pkg.rust_version().unwrap_or(&String::new()),
353+
)
350354
.cwd(pkg.root());
351355

352356
// Apply any environment variables from the config

src/doc/src/reference/environment-variables.md

+3
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@ corresponding environment variable is set to the empty string, `""`.
214214
* `CARGO_PKG_REPOSITORY` — The repository from the manifest of your package.
215215
* `CARGO_PKG_LICENSE` — The license from the manifest of your package.
216216
* `CARGO_PKG_LICENSE_FILE` — The license file from the manifest of your package.
217+
* `CARGO_PKG_RUST_VERSION` — The Rust version from the manifest of your package.
218+
Note that this is the minimum Rust version supported by the package, not the
219+
current Rust version.
217220
* `CARGO_CRATE_NAME` — The name of the crate that is currently being compiled.
218221
* `CARGO_BIN_NAME` — The name of the binary that is currently being compiled (if it is a binary). This name does not include any file extension, such as `.exe`.
219222
* `OUT_DIR` — If the package has a build script, this is set to the folder where the build

tests/testsuite/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1314,6 +1314,7 @@ fn crate_env_vars() {
13141314
authors = ["[email protected]"]
13151315
license = "MIT OR Apache-2.0"
13161316
license-file = "license.txt"
1317+
rust-version = "1.61.0"
13171318
13181319
[[bin]]
13191320
name = "foo-bar"
@@ -1338,6 +1339,7 @@ fn crate_env_vars() {
13381339
static LICENSE: &'static str = env!("CARGO_PKG_LICENSE");
13391340
static LICENSE_FILE: &'static str = env!("CARGO_PKG_LICENSE_FILE");
13401341
static DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION");
1342+
static RUST_VERSION: &'static str = env!("CARGO_PKG_RUST_VERSION");
13411343
static BIN_NAME: &'static str = env!("CARGO_BIN_NAME");
13421344
static CRATE_NAME: &'static str = env!("CARGO_CRATE_NAME");
13431345
@@ -1356,6 +1358,7 @@ fn crate_env_vars() {
13561358
assert_eq!("MIT OR Apache-2.0", LICENSE);
13571359
assert_eq!("license.txt", LICENSE_FILE);
13581360
assert_eq!("This is foo", DESCRIPTION);
1361+
assert_eq!("1.61.0", RUST_VERSION);
13591362
let s = format!("{}.{}.{}-{}", VERSION_MAJOR,
13601363
VERSION_MINOR, VERSION_PATCH, VERSION_PRE);
13611364
assert_eq!(s, VERSION);

0 commit comments

Comments
 (0)