-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expose rust-version through env var #10713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1314,6 +1314,7 @@ fn crate_env_vars() { | |
| authors = ["[email protected]"] | ||
| license = "MIT OR Apache-2.0" | ||
| license-file = "license.txt" | ||
| rust-version = "1.61.0" | ||
|
|
||
| [[bin]] | ||
| name = "foo-bar" | ||
|
|
@@ -1338,6 +1339,7 @@ fn crate_env_vars() { | |
| static LICENSE: &'static str = env!("CARGO_PKG_LICENSE"); | ||
| static LICENSE_FILE: &'static str = env!("CARGO_PKG_LICENSE_FILE"); | ||
| static DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION"); | ||
| static RUST_VERSION: &'static str = env!("CARGO_PKG_RUST_VERSION"); | ||
| static BIN_NAME: &'static str = env!("CARGO_BIN_NAME"); | ||
| static CRATE_NAME: &'static str = env!("CARGO_CRATE_NAME"); | ||
|
|
||
|
|
@@ -1356,6 +1358,7 @@ fn crate_env_vars() { | |
| assert_eq!("MIT OR Apache-2.0", LICENSE); | ||
| assert_eq!("license.txt", LICENSE_FILE); | ||
| assert_eq!("This is foo", DESCRIPTION); | ||
| assert_eq!("1.61.0", RUST_VERSION); | ||
| let s = format!("{}.{}.{}-{}", VERSION_MAJOR, | ||
| VERSION_MINOR, VERSION_PATCH, VERSION_PRE); | ||
| assert_eq!(s, VERSION); | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The thing going through my head is the question: "what principle governs us exposing the manifest as environment variables?".
For myself, exposing
CARGO_PKG_RUST_VERSIONfeels very arbitrary from a cargo-design perspective. Why this field and not many of the others?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many of the other fields are already exposed. Like the
versionfield is even exposed through 4 or 5 env vars. Most package metadata is exposed. I think this makes it more consistent.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also see #8758 where CARGO_PRIMARY_PACKAGE was added "primarily for Clippy".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Except for CARGO_PRIMARY_PACKAGE , those all look targeted at the code being built, either so a crate can access its own metadata or build.rs / test purposes.
Thanks for pointing out precedence on this. I am still interested in seeing if there is an answer to my question or if there is interest in creating an answer to my question. Until that time, I am not comfortable merging this though maybe others of the cargo team would be.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm good with waiting on other team members. Just wanted to bring this up through a PR again, because my question some time ago on Zulip didn't get any replies 😅
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(People regularly want Rust compiler version information, so I want to make sure people don't think this is the thing they're looking for for that.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We discussed this in the cargo team meeting and we have no guiding principle on what env variables should exist and are intending to be responsive to what different teams needs are. I'm fine merging this after the documentation gets improved.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm surprised we don't link any of these fields to their manifest field's documentation. That would also be a natural way to clarify what this is intending to contain