Skip to content

Commit 95193ca

Browse files
committed
Disambiguating docs about when environment variables are set.
Providing an example of fetching env vars at runtime in a buildscript. Reordering the list so that examples pertain to the correct sections.
1 parent 3efd44b commit 95193ca

File tree

1 file changed

+34
-19
lines changed

1 file changed

+34
-19
lines changed

src/doc/environment-variables.md

+34-19
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
% Environment Variables
22

3-
Cargo sets a number of environment variables which your code can detect. To get
4-
the value of any of these variables in a Rust program, do this:
5-
6-
```
7-
let version = env!("CARGO_PKG_VERSION")
8-
```
9-
10-
`version` will now contain the value of `CARGO_PKG_VERSION`.
11-
12-
Here are a list of the variables Cargo sets, organized by when it sets them:
3+
Cargo sets and reads a number of environment variables which your code can detect
4+
or override. Here is a list of the variables Cargo sets, organized by when it interacts
5+
with them:
136

147
# Environment variables Cargo reads
158

9+
You can override these environment variables to change Cargo's behavior on your system:
10+
1611
* `CARGO_HOME` - Cargo maintains a local cache of the registry index and of git
1712
checkouts of crates. By default these are stored under `$HOME/.cargo`, but
1813
this variable overrides the location of this directory. Once a crate is cached
@@ -27,8 +22,37 @@ Here are a list of the variables Cargo sets, organized by when it sets them:
2722
* `RUSTDOC` - Instead of running `rustdoc`, Cargo will execute this specified
2823
`rustdoc` instance instead.
2924

25+
# Environment variables Cargo sets for crates
26+
27+
Cargo exposes these environment variables to your crate when it is compiled. To get the
28+
value of any of these variables in a Rust program, do this:
29+
30+
```
31+
let version = env!("CARGO_PKG_VERSION");
32+
```
33+
34+
`version` will now contain the value of `CARGO_PKG_VERSION`.
35+
36+
* `CARGO_MANIFEST_DIR` - The directory containing the manifest of your package.
37+
* `CARGO_PKG_VERSION` - The full version of your package.
38+
* `CARGO_PKG_VERSION_MAJOR` - The major version of your package.
39+
* `CARGO_PKG_VERSION_MINOR` - The minor version of your package.
40+
* `CARGO_PKG_VERSION_PATCH` - The patch version of your package.
41+
* `CARGO_PKG_VERSION_PRE` - The pre-release version of your package.
42+
3043
# Environment variables Cargo sets for build scripts
3144

45+
Cargo sets several environment variables when build scripts are run. Because these variables
46+
are not yet set when the build script is compiled, the above example using `env!` won't work
47+
and instead you'll need to retrieve the values when the build script is run:
48+
49+
```
50+
use std::env;
51+
let out_dir = env::var("OUT_DIR").unwrap();
52+
```
53+
54+
`out_dir` will now contain the value of `OUT_DIR`.
55+
3256
* `CARGO_MANIFEST_DIR` - The directory containing the manifest for the package
3357
being built (the package containing the build
3458
script). Also note that this is the value of the
@@ -57,12 +81,3 @@ Here are a list of the variables Cargo sets, organized by when it sets them:
5781
[links]: build-script.html#the-links-manifest-key
5882
[profile]: manifest.html#the-profile-sections
5983
[clang]:http://clang.llvm.org/docs/CrossCompilation.html#target-triple
60-
61-
# Environment variables Cargo sets for crates
62-
63-
* `CARGO_MANIFEST_DIR` - The directory containing the manifest of your package.
64-
* `CARGO_PKG_VERSION` - The full version of your package.
65-
* `CARGO_PKG_VERSION_MAJOR` - The major version of your package.
66-
* `CARGO_PKG_VERSION_MINOR` - The minor version of your package.
67-
* `CARGO_PKG_VERSION_PATCH` - The patch version of your package.
68-
* `CARGO_PKG_VERSION_PRE` - The pre-release version of your package.

0 commit comments

Comments
 (0)