Skip to content

Commit 3b39e3a

Browse files
committed
Adding environment variable CARGO_PKG_LICENSE_FILE
1 parent c8ae267 commit 3b39e3a

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/cargo/core/compiler/compilation.rs

+4
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,10 @@ impl<'cfg> Compilation<'cfg> {
297297
"CARGO_PKG_LICENSE",
298298
metadata.license.as_ref().unwrap_or(&String::new()),
299299
)
300+
.env(
301+
"CARGO_PKG_LICENSE_FILE",
302+
metadata.license_file.as_ref().unwrap_or(&String::new()),
303+
)
300304
.env("CARGO_PKG_AUTHORS", &pkg.authors().join(":"))
301305
.cwd(pkg.root());
302306
Ok(cmd)

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

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ let version = env!("CARGO_PKG_VERSION");
185185
* `CARGO_PKG_HOMEPAGE` — The home page from the manifest of your package.
186186
* `CARGO_PKG_REPOSITORY` — The repository from the manifest of your package.
187187
* `CARGO_PKG_LICENSE` — The license from the manifest of your package.
188+
* `CARGO_PKG_LICENSE_FILE` — The license file from the manifest of your package.
188189
* `CARGO_CRATE_NAME` — The name of the crate that is currently being compiled.
189190
* `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`.
190191
* `OUT_DIR` — If the package has a build script, this is set to the folder where the build

tests/testsuite/build.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1231,6 +1231,7 @@ fn crate_env_vars() {
12311231
repository = "https://example.com/repo.git"
12321232
authors = ["[email protected]"]
12331233
license = "MIT OR Apache-2.0"
1234+
license_file = "license.txt"
12341235
12351236
[[bin]]
12361237
name = "foo-bar"
@@ -1253,6 +1254,7 @@ fn crate_env_vars() {
12531254
static HOMEPAGE: &'static str = env!("CARGO_PKG_HOMEPAGE");
12541255
static REPOSITORY: &'static str = env!("CARGO_PKG_REPOSITORY");
12551256
static LICENSE: &'static str = env!("CARGO_PKG_LICENSE");
1257+
static LICENSE_FILE: &'static str = env!("CARGO_PKG_LICENSE_FILE");
12561258
static DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION");
12571259
static BIN_NAME: &'static str = env!("CARGO_BIN_NAME");
12581260
static CRATE_NAME: &'static str = env!("CARGO_CRATE_NAME");

0 commit comments

Comments
 (0)