Skip to content

Commit f913212

Browse files
committed
Auto merge of #7823 - ehuss:stabilize-config-profile, r=alexcrichton
Stabilize config-profile. This is a proposal to stabilize config-profiles. This feature was proposed in [RFC 2282](rust-lang/rfcs#2282) and implemented in #5506. Tracking issue is rust-lang/rust#48683. This is intended to land in 1.43 which will reach the stable channel on April 23rd. This is a fairly straightforward extension of profiles where the exact same syntax from `Cargo.toml` can be specified in a config file. Environment variables are supported for everything except the `package` override table, where we do not support the ability to read arbitrary keys in the environment name.
2 parents 4fbd644 + 8e935d4 commit f913212

File tree

8 files changed

+142
-86
lines changed

8 files changed

+142
-86
lines changed

src/bin/cargo/cli.rs

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Available unstable (nightly-only) flags:
3636
-Z minimal-versions -- Install minimal dependency versions instead of maximum
3737
-Z no-index-update -- Do not update the registry, avoids a network request for benchmarking
3838
-Z unstable-options -- Allow the usage of unstable options
39-
-Z config-profile -- Read profiles from .cargo/config files
4039
-Z timings -- Display concurrency information
4140
-Z doctest-xcompile -- Compile and run doctests for non-host target using runner config
4241

src/cargo/core/features.rs

-2
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ pub struct CliUnstable {
331331
pub minimal_versions: bool,
332332
pub package_features: bool,
333333
pub advanced_env: bool,
334-
pub config_profile: bool,
335334
pub config_include: bool,
336335
pub dual_proc_macros: bool,
337336
pub mtime_on_use: bool,
@@ -397,7 +396,6 @@ impl CliUnstable {
397396
"minimal-versions" => self.minimal_versions = parse_empty(k, v)?,
398397
"package-features" => self.package_features = parse_empty(k, v)?,
399398
"advanced-env" => self.advanced_env = parse_empty(k, v)?,
400-
"config-profile" => self.config_profile = parse_empty(k, v)?,
401399
"config-include" => self.config_include = parse_empty(k, v)?,
402400
"dual-proc-macros" => self.dual_proc_macros = parse_empty(k, v)?,
403401
// can also be set in .cargo/config or with and ENV

src/cargo/core/profiles.rs

+2-16
Original file line numberDiff line numberDiff line change
@@ -908,13 +908,9 @@ fn merge_config_profiles(
908908
};
909909
// List of profile names to check if defined in config only.
910910
let mut check_to_add = vec![requested_profile];
911-
// Flag so -Zconfig-profile warning is only printed once.
912-
let mut unstable_warned = false;
913911
// Merge config onto manifest profiles.
914912
for (name, profile) in &mut profiles {
915-
if let Some(config_profile) =
916-
get_config_profile(name, config, features, &mut unstable_warned)?
917-
{
913+
if let Some(config_profile) = get_config_profile(name, config, features)? {
918914
profile.merge(&config_profile);
919915
}
920916
if let Some(inherits) = &profile.inherits {
@@ -928,9 +924,7 @@ fn merge_config_profiles(
928924
std::mem::swap(&mut current, &mut check_to_add);
929925
for name in current.drain(..) {
930926
if !profiles.contains_key(&name) {
931-
if let Some(config_profile) =
932-
get_config_profile(&name, config, features, &mut unstable_warned)?
933-
{
927+
if let Some(config_profile) = get_config_profile(&name, config, features)? {
934928
if let Some(inherits) = &config_profile.inherits {
935929
check_to_add.push(*inherits);
936930
}
@@ -947,20 +941,12 @@ fn get_config_profile(
947941
name: &str,
948942
config: &Config,
949943
features: &Features,
950-
unstable_warned: &mut bool,
951944
) -> CargoResult<Option<TomlProfile>> {
952945
let profile: Option<config::Value<TomlProfile>> = config.get(&format!("profile.{}", name))?;
953946
let profile = match profile {
954947
Some(profile) => profile,
955948
None => return Ok(None),
956949
};
957-
if !*unstable_warned && !config.cli_unstable().config_profile {
958-
config.shell().warn(format!(
959-
"config profiles require the `-Z config-profile` command-line option (found profile `{}` in {})",
960-
name, profile.definition))?;
961-
*unstable_warned = true;
962-
return Ok(None);
963-
}
964950
let mut warnings = Vec::new();
965951
profile
966952
.val

src/doc/src/reference/config.md

+102
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,21 @@ retry = 2 # network retries
8787
git-fetch-with-cli = true # use the `git` executable for git operations
8888
offline = false # do not access the network
8989

90+
[profile.<name>] # Modify profile settings via config.
91+
opt-level = 0 # Optimization level.
92+
debug = true # Include debug info.
93+
debug-assertions = true # Enables debug assertions.
94+
overflow-checks = true # Enables runtime integer overflow checks.
95+
lto = false # Sets link-time optimization.
96+
panic = 'unwind' # The panic strategy.
97+
incremental = true # Incremental compilation.
98+
codegen-units = 16 # Number of code generation units.
99+
rpath = false # Sets the rpath linking option.
100+
[profile.<name>.build-override] # Overrides build-script settings.
101+
# Same keys for a normal profile.
102+
[profile.<name>.package.<name>] # Override profile for a package.
103+
# Same keys for a normal profile (minus `panic`, `lto`, and `rpath`).
104+
90105
[registries.<name>] # registries other than crates.io
91106
index = "" # URL of the registry index
92107
token = "" # authentication token for the registry
@@ -549,6 +564,93 @@ needed, and generate an error if it encounters a network error.
549564

550565
Can be overridden with the `--offline` command-line option.
551566

567+
#### `[profile]`
568+
569+
The `[profile]` table can be used to globally change profile settings, and
570+
override settings specified in `Cargo.toml`. It has the same syntax and
571+
options as profiles specified in `Cargo.toml`. See the [Profiles chapter] for
572+
details about the options.
573+
574+
[Profiles chapter]: profiles.md
575+
576+
##### `[profile.<name>.build-override]`
577+
* Environment: `CARGO_PROFILE_<name>_BUILD_OVERRIDE_<key>`
578+
579+
The build-override table overrides settings for build scripts, proc macros,
580+
and their dependencies. It has the same keys as a normal profile. See the
581+
[overrides section](profiles.md#overrides) for more details.
582+
583+
##### `[profile.<name>.package.<name>]`
584+
* Environment: not supported
585+
586+
The package table overrides settings for specific packages. It has the same
587+
keys as a normal profile, minus the `panic`, `lto`, and `rpath` settings. See
588+
the [overrides section](profiles.md#overrides) for more details.
589+
590+
##### `profile.<name>.codegen-units`
591+
* Type: integer
592+
* Default: See profile docs.
593+
* Environment: `CARGO_PROFILE_<name>_CODEGEN_UNITS`
594+
595+
See [codegen-units](profiles.md#codegen-units).
596+
597+
##### `profile.<name>.debug`
598+
* Type: integer or boolean
599+
* Default: See profile docs.
600+
* Environment: `CARGO_PROFILE_<name>_DEBUG`
601+
602+
See [debug](profiles.md#debug).
603+
604+
##### `profile.<name>.debug-assertions`
605+
* Type: boolean
606+
* Default: See profile docs.
607+
* Environment: `CARGO_PROFILE_<name>_DEBUG_ASSERTIONS`
608+
609+
See [debug-assertions](profiles.md#debug-assertions).
610+
611+
##### `profile.<name>.incremental`
612+
* Type: boolean
613+
* Default: See profile docs.
614+
* Environment: `CARGO_PROFILE_<name>_INCREMENTAL`
615+
616+
See [incremental](profiles.md#incremental).
617+
618+
##### `profile.<name>.lto`
619+
* Type: string or boolean
620+
* Default: See profile docs.
621+
* Environment: `CARGO_PROFILE_<name>_LTO`
622+
623+
See [lto](profiles.md#lto).
624+
625+
##### `profile.<name>.overflow-checks`
626+
* Type: boolean
627+
* Default: See profile docs.
628+
* Environment: `CARGO_PROFILE_<name>_OVERFLOW_CHECKS`
629+
630+
See [overflow-checks](profiles.md#overflow-checks).
631+
632+
##### `profile.<name>.opt-level`
633+
* Type: integer or string
634+
* Default: See profile docs.
635+
* Environment: `CARGO_PROFILE_<name>_OPT_LEVEL`
636+
637+
See [opt-level](profiles.md#opt-level).
638+
639+
##### `profile.<name>.panic`
640+
* Type: string
641+
* default: See profile docs.
642+
* Environment: `CARGO_PROFILE_<name>_PANIC`
643+
644+
See [panic](profiles.md#panic).
645+
646+
##### `profile.<name>.rpath`
647+
* Type: boolean
648+
* default: See profile docs.
649+
* Environment: `CARGO_PROFILE_<name>_RPATH`
650+
651+
See [rpath](profiles.md#rpath).
652+
653+
552654
#### `[registries]`
553655

554656
The `[registries]` table is used for specifying additional [registries]. It

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

+20
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ supported environment variables are:
8484
* `CARGO_NET_RETRY` — Number of times to retry network errors, see [`net.retry`].
8585
* `CARGO_NET_GIT_FETCH_WITH_CLI` — Enables the use of the `git` executable to fetch, see [`net.git-fetch-with-cli`].
8686
* `CARGO_NET_OFFLINE` — Offline mode, see [`net.offline`].
87+
* `CARGO_PROFILE_<name>_BUILD_OVERRIDE_<key>` — Override build script profile, see [`profile.<name>.build-override`].
88+
* `CARGO_PROFILE_<name>_CODEGEN_UNITS` — Set code generation units, see [`profile.<name>.codegen-units`].
89+
* `CARGO_PROFILE_<name>_DEBUG` — What kind of debug info to include, see [`profile.<name>.debug`].
90+
* `CARGO_PROFILE_<name>_DEBUG_ASSERTIONS` — Enable/disable debug assertions, see [`profile.<name>.debug-assertions`].
91+
* `CARGO_PROFILE_<name>_INCREMENTAL` — Enable/disable incremental compilation, see [`profile.<name>.incremental`].
92+
* `CARGO_PROFILE_<name>_LTO` — Link-time optimization, see [`profile.<name>.lto`].
93+
* `CARGO_PROFILE_<name>_OVERFLOW_CHECKS` — Enable/disable overflow checks, see [`profile.<name>.overflow-checks`].
94+
* `CARGO_PROFILE_<name>_OPT_LEVEL` — Set the optimization level, see [`profile.<name>.opt-level`].
95+
* `CARGO_PROFILE_<name>_PANIC` — The panic strategy to use, see [`profile.<name>.panic`].
96+
* `CARGO_PROFILE_<name>_RPATH` — The rpath linking option, see [`profile.<name>.rpath`].
8797
* `CARGO_REGISTRIES_<name>_INDEX` — URL of a registry index, see [`registries.<name>.index`].
8898
* `CARGO_REGISTRIES_<name>_TOKEN` — Authentication token of a registry, see [`registries.<name>.token`].
8999
* `CARGO_REGISTRY_DEFAULT` — Default registry for the `--registry` flag, see [`registry.default`].
@@ -129,6 +139,16 @@ supported environment variables are:
129139
[`net.retry`]: config.md#netretry
130140
[`net.git-fetch-with-cli`]: config.md#netgit-fetch-with-cli
131141
[`net.offline`]: config.md#netoffline
142+
[`profile.<name>.build-override`]: config.md#profilenamebuild-override
143+
[`profile.<name>.codegen-units`]: config.md#profilenamecodegen-units
144+
[`profile.<name>.debug`]: config.md#profilenamedebug
145+
[`profile.<name>.debug-assertions`]: config.md#profilenamedebug-assertions
146+
[`profile.<name>.incremental`]: config.md#profilenameincremental
147+
[`profile.<name>.lto`]: config.md#profilenamelto
148+
[`profile.<name>.overflow-checks`]: config.md#profilenameoverflow-checks
149+
[`profile.<name>.opt-level`]: config.md#profilenameopt-level
150+
[`profile.<name>.panic`]: config.md#profilenamepanic
151+
[`profile.<name>.rpath`]: config.md#profilenamerpath
132152
[`registries.<name>.index`]: config.md#registriesnameindex
133153
[`registries.<name>.token`]: config.md#registriesnametoken
134154
[`registry.default`]: config.md#registrydefault

src/doc/src/reference/profiles.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ Cargo only looks at the profile settings in the `Cargo.toml` manifest at the
2222
root of the workspace. Profile settings defined in dependencies will be
2323
ignored.
2424

25+
Additionally, profiles can be overridden from a [config] definition.
26+
Specifying a profile in a config file or environment variable will override
27+
the settings from `Cargo.toml`.
28+
29+
[config]: config.md
30+
2531
### Profile settings
2632

2733
The following is a list of settings that can be controlled in a profile.
@@ -393,5 +399,4 @@ crates. When experimenting with optimizing dependencies for development,
393399
consider trying opt-level 1, which will apply some optimizations while still
394400
allowing monomorphized items to be shared.
395401

396-
397402
[nalgebra]: https://crates.io/crates/nalgebra

src/doc/src/reference/unstable.md

-20
Original file line numberDiff line numberDiff line change
@@ -158,26 +158,6 @@ lto = true
158158
```
159159

160160

161-
### Config Profiles
162-
* Tracking Issue: [rust-lang/rust#48683](https://github.com/rust-lang/rust/issues/48683)
163-
* RFC: [#2282](https://github.com/rust-lang/rfcs/blob/master/text/2282-profile-dependencies.md)
164-
165-
Profiles can be specified in `.cargo/config` files. The `-Z config-profile`
166-
command-line flag is required to use this feature. The format is the same as
167-
in a `Cargo.toml` manifest. If found in multiple config files, settings will
168-
be merged using the regular [config hierarchy](config.md#hierarchical-structure).
169-
Config settings take precedence over manifest settings.
170-
171-
```toml
172-
[profile.dev]
173-
opt-level = 3
174-
```
175-
176-
```
177-
cargo +nightly build -Z config-profile
178-
```
179-
180-
181161
### Namespaced features
182162
* Original issue: [#1286](https://github.com/rust-lang/cargo/issues/1286)
183163
* Tracking Issue: [#5565](https://github.com/rust-lang/cargo/issues/5565)

0 commit comments

Comments
 (0)