1
1
% Environment Variables
2
2
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:
13
6
14
7
# Environment variables Cargo reads
15
8
9
+ You can override these environment variables to change Cargo's behavior on your system:
10
+
16
11
* ` CARGO_HOME ` - Cargo maintains a local cache of the registry index and of git
17
12
checkouts of crates. By default these are stored under ` $HOME/.cargo ` , but
18
13
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:
27
22
* ` RUSTDOC ` - Instead of running ` rustdoc ` , Cargo will execute this specified
28
23
` rustdoc ` instance instead.
29
24
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
+
30
43
# Environment variables Cargo sets for build scripts
31
44
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
+
32
56
* ` CARGO_MANIFEST_DIR ` - The directory containing the manifest for the package
33
57
being built (the package containing the build
34
58
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:
57
81
[ links ] : build-script.html#the-links-manifest-key
58
82
[ profile ] : manifest.html#the-profile-sections
59
83
[ 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