cargo/core/
features.rs

1//! Support for nightly features in Cargo itself.
2//!
3//! This file is the version of `feature_gate.rs` in upstream Rust for Cargo
4//! itself and is intended to be the avenue for which new features in Cargo are
5//! gated by default and then eventually stabilized. All known stable and
6//! unstable features are tracked in this file.
7//!
8//! If you're reading this then you're likely interested in adding a feature to
9//! Cargo, and the good news is that it shouldn't be too hard! First determine
10//! how the feature should be gated:
11//!
12//! * Error when the feature is used without the gate
13//!   * Required if ignoring the feature violates the users intent in non-superficial ways
14//!   * A low-effort / safe way to protect the user from being broken if the format of the feature changes in
15//!     incompatible was (can be worked around)
16//!   * Good for: CLI (gate: `-Zunstable-options` or `-Z` if combined with other changes), `Cargo.toml` (gate: `cargo-features`)
17//! * Warn that the feature is ignored due to lack of the gate
18//!   * For if you could opt-in to the unimplemented feature on Cargo today and Cargo would
19//!     operate just fine
20//!   * If gate is not enabled, prefer to warn if the format of the feature is incompatible
21//!     (instead of error or ignore)
22//!   * Good for: `Cargo.toml`, `.cargo/config.toml`, `config.json` index file (gate: `-Z`)
23//! * Ignore the feature that is used without a gate
24//!   * For when ignoring the feature has so little impact that annoying the user is not worth it
25//!     (e.g. a config field that changes Cargo's terminal output)
26//!   * For behavior changes without an interface (e.g. the resolver)
27//!   * Good for: `.cargo/config.toml`, `config.json` index file (gate: `-Z`)
28//!
29//! For features that touch multiple parts of Cargo, multiple feature gating strategies (error,
30//! warn, ignore) and mechanisms (`-Z`, `cargo-features`) may be used.
31//!
32//! When adding new tests for your feature, usually the tests should go into a
33//! new module of the testsuite named after the feature. See
34//! <https://doc.crates.io/contrib/tests/writing.html> for more information on
35//! writing tests. Particularly, check out the "Testing Nightly Features"
36//! section for testing unstable features. Be sure to test the feature gate itself.
37//!
38//! After you have added your feature, be sure to update the unstable
39//! documentation at `src/doc/src/reference/unstable.md` to include a short
40//! description of how to use your new feature.
41//!
42//! And hopefully that's it!
43//!
44//! ## `cargo-features`
45//!
46//! The steps for adding new Cargo.toml syntax are:
47//!
48//! 1. Add the cargo-features unstable gate. Search the code below for "look here" to
49//!    find the [`features!`] macro invocation and add your feature to the list.
50//!
51//! 2. Update the Cargo.toml parsing code to handle your new feature.
52//!
53//! 3. Wherever you added the new parsing code, call
54//!    `features.require(Feature::my_feature_name())?` if the new syntax is
55//!    used. This will return an error if the user hasn't listed the feature
56//!    in `cargo-features` or this is not the nightly channel.
57//!
58//! ## `-Z unstable-options`
59//!
60//! `-Z unstable-options` is intended to force the user to opt-in to new CLI
61//! flags, options, and new subcommands.
62//!
63//! The steps to add a new command-line option are:
64//!
65//! 1. Add the option to the CLI parsing code. In the help text, be sure to
66//!    include `(unstable)` to note that this is an unstable option.
67//! 2. Where the CLI option is loaded, be sure to call
68//!    [`CliUnstable::fail_if_stable_opt`]. This will return an error if `-Z
69//!    unstable options` was not passed.
70//!
71//! ## `-Z` options
72//!
73//! New `-Z` options cover all other functionality that isn't covered with
74//! `cargo-features` or `-Z unstable-options`.
75//!
76//! The steps to add a new `-Z` option are:
77//!
78//! 1. Add the option to the [`CliUnstable`] struct in the macro invocation of
79//!    [`unstable_cli_options!`]. Flags can take an optional value if you want.
80//! 2. Update the [`CliUnstable::add`] function to parse the flag.
81//! 3. Wherever the new functionality is implemented, call
82//!    [`GlobalContext::cli_unstable`] to get an instance of [`CliUnstable`]
83//!    and check if the option has been enabled on the [`CliUnstable`] instance.
84//!    Nightly gating is already handled, so no need to worry about that.
85//!    If warning when feature is used without the gate, be sure to gracefully degrade (with a
86//!    warning) when the `Cargo.toml` / `.cargo/config.toml` field usage doesn't match the
87//!    schema.
88//! 4. For any `Cargo.toml` fields, strip them in [`prepare_for_publish`] if the gate isn't set
89//!
90//! ## Stabilization
91//!
92//! For the stabilization process, see
93//! <https://doc.crates.io/contrib/process/unstable.html#stabilization>.
94//!
95//! The steps for stabilizing are roughly:
96//!
97//! 1. Update the feature to be stable, based on the kind of feature:
98//!   1. `cargo-features`: Change the feature to `stable` in the [`features!`]
99//!      macro invocation below, and include the version and a URL for the
100//!      documentation.
101//!   2. `-Z unstable-options`: Find the call to [`fail_if_stable_opt`] and
102//!      remove it. Be sure to update the man pages if necessary.
103//!   3. `-Z` flag: Change the parsing code in [`CliUnstable::add`] to call
104//!      `stabilized_warn` or `stabilized_err` and remove the field from
105//!      [`CliUnstable`]. Remove the `(unstable)` note in the clap help text if
106//!      necessary.
107//! 2. Remove `masquerade_as_nightly_cargo` from any tests, and remove
108//!    `cargo-features` from `Cargo.toml` test files if any. You can
109//!     quickly find what needs to be removed by searching for the name
110//!     of the feature, e.g. `print_im_a_teapot`
111//! 3. Update the docs in unstable.md to move the section to the bottom
112//!    and summarize it similar to the other entries. Update the rest of the
113//!    documentation to add the new feature.
114//!
115//! [`GlobalContext::cli_unstable`]: crate::util::context::GlobalContext::cli_unstable
116//! [`fail_if_stable_opt`]: CliUnstable::fail_if_stable_opt
117//! [`features!`]: macro.features.html
118//! [`unstable_cli_options!`]: macro.unstable_cli_options.html
119//! [`prepare_for_publish`]: crate::util::toml::prepare_for_publish
120
121use std::collections::BTreeSet;
122use std::env;
123use std::fmt::{self, Write};
124use std::path::PathBuf;
125use std::str::FromStr;
126
127use anyhow::{Error, bail};
128use cargo_util::ProcessBuilder;
129use serde::{Deserialize, Serialize};
130
131use crate::GlobalContext;
132use crate::core::resolver::ResolveBehavior;
133use crate::util::errors::CargoResult;
134use crate::util::indented_lines;
135
136pub const SEE_CHANNELS: &str = "See https://doc.rust-lang.org/book/appendix-07-nightly-rust.html for more information \
137     about Rust release channels.";
138
139/// Value of [`allow-features`](CliUnstable::allow_features)
140pub type AllowFeatures = BTreeSet<String>;
141
142/// The edition of the compiler ([RFC 2052])
143///
144/// The following sections will guide you how to add and stabilize an edition.
145///
146/// ## Adding a new edition
147///
148/// - Add the next edition to the enum.
149/// - Update every match expression that now fails to compile.
150/// - Update the [`FromStr`] impl.
151/// - Update [`CLI_VALUES`] to include the new edition.
152/// - Set [`LATEST_UNSTABLE`] to Some with the new edition.
153/// - Update the shell completion files.
154/// - Update any failing tests (hopefully there are very few).
155///
156/// ## Stabilization instructions
157///
158/// - Set [`LATEST_UNSTABLE`] to None.
159/// - Set [`LATEST_STABLE`] to the new version.
160/// - Update [`is_stable`] to `true`.
161/// - Set [`first_version`] to the version it will be released.
162/// - Update any tests that are affected.
163/// - Update the man page for the `--edition` flag.
164/// - Update the documentation:
165///   - Update any features impacted by the edition.
166///   - Update manifest.md#the-edition-field.
167///   - Update the `--edition` flag (options-new.md).
168///   - Rebuild man pages.
169///
170/// [RFC 2052]: https://rust-lang.github.io/rfcs/2052-epochs.html
171/// [`FromStr`]: Edition::from_str
172/// [`CLI_VALUES`]: Edition::CLI_VALUES
173/// [`LATEST_UNSTABLE`]: Edition::LATEST_UNSTABLE
174/// [`LATEST_STABLE`]: Edition::LATEST_STABLE
175/// [`first_version`]: Edition::first_version
176/// [`is_stable`]: Edition::is_stable
177/// [`toml`]: crate::util::toml
178/// [`features!`]: macro.features.html
179#[derive(
180    Default, Clone, Copy, Debug, Hash, PartialOrd, Ord, Eq, PartialEq, Serialize, Deserialize,
181)]
182pub enum Edition {
183    /// The 2015 edition
184    #[default]
185    Edition2015,
186    /// The 2018 edition
187    Edition2018,
188    /// The 2021 edition
189    Edition2021,
190    /// The 2024 edition
191    Edition2024,
192    /// The future edition (permanently unstable)
193    EditionFuture,
194}
195
196impl Edition {
197    /// The latest edition that is unstable.
198    ///
199    /// This is `None` if there is no next unstable edition.
200    ///
201    /// Note that this does *not* include "future" since this is primarily
202    /// used for tests that need to step between stable and unstable.
203    pub const LATEST_UNSTABLE: Option<Edition> = None;
204    /// The latest stable edition.
205    pub const LATEST_STABLE: Edition = Edition::Edition2024;
206    pub const ALL: &'static [Edition] = &[
207        Self::Edition2015,
208        Self::Edition2018,
209        Self::Edition2021,
210        Self::Edition2024,
211        Self::EditionFuture,
212    ];
213    /// Possible values allowed for the `--edition` CLI flag.
214    ///
215    /// This requires a static value due to the way clap works, otherwise I
216    /// would have built this dynamically.
217    ///
218    /// This does not include `future` since we don't need to create new
219    /// packages with it.
220    pub const CLI_VALUES: [&'static str; 4] = ["2015", "2018", "2021", "2024"];
221
222    /// Returns the first version that a particular edition was released on
223    /// stable.
224    pub(crate) fn first_version(&self) -> Option<semver::Version> {
225        use Edition::*;
226        match self {
227            Edition2015 => None,
228            Edition2018 => Some(semver::Version::new(1, 31, 0)),
229            Edition2021 => Some(semver::Version::new(1, 56, 0)),
230            Edition2024 => Some(semver::Version::new(1, 85, 0)),
231            EditionFuture => None,
232        }
233    }
234
235    /// Returns `true` if this edition is stable in this release.
236    pub fn is_stable(&self) -> bool {
237        use Edition::*;
238        match self {
239            Edition2015 => true,
240            Edition2018 => true,
241            Edition2021 => true,
242            Edition2024 => true,
243            EditionFuture => false,
244        }
245    }
246
247    /// Returns the previous edition from this edition.
248    ///
249    /// Returns `None` for 2015.
250    pub fn previous(&self) -> Option<Edition> {
251        use Edition::*;
252        match self {
253            Edition2015 => None,
254            Edition2018 => Some(Edition2015),
255            Edition2021 => Some(Edition2018),
256            Edition2024 => Some(Edition2021),
257            EditionFuture => panic!("future does not have a previous edition"),
258        }
259    }
260
261    /// Returns the next edition from this edition, returning the last edition
262    /// if this is already the last one.
263    pub fn saturating_next(&self) -> Edition {
264        use Edition::*;
265        // Nothing should treat "future" as being next.
266        match self {
267            Edition2015 => Edition2018,
268            Edition2018 => Edition2021,
269            Edition2021 => Edition2024,
270            Edition2024 => Edition2024,
271            EditionFuture => EditionFuture,
272        }
273    }
274
275    /// Updates the given [`ProcessBuilder`] to include the appropriate flags
276    /// for setting the edition.
277    pub(crate) fn cmd_edition_arg(&self, cmd: &mut ProcessBuilder) {
278        cmd.arg(format!("--edition={}", self));
279        if !self.is_stable() {
280            cmd.arg("-Z").arg("unstable-options");
281        }
282    }
283
284    /// Adds the appropriate argument to generate warnings for this edition.
285    pub(crate) fn force_warn_arg(&self, cmd: &mut ProcessBuilder) {
286        use Edition::*;
287        match self {
288            Edition2015 => {}
289            EditionFuture => {
290                cmd.arg("--force-warn=edition_future_compatibility");
291            }
292            e => {
293                // Note that cargo always passes this even if the
294                // compatibility lint group does not exist. When a new edition
295                // is introduced, but there are no migration lints, rustc does
296                // not create the lint group. That's OK because rustc will
297                // just generate a warning about an unknown lint which will be
298                // suppressed due to cap-lints.
299                cmd.arg(format!("--force-warn=rust-{e}-compatibility"));
300            }
301        }
302    }
303
304    /// Whether or not this edition supports the `rust_*_idioms` lint.
305    ///
306    /// Ideally this would not be necessary...
307    pub(crate) fn supports_idiom_lint(&self) -> bool {
308        use Edition::*;
309        match self {
310            Edition2015 => false,
311            Edition2018 => true,
312            Edition2021 => false,
313            Edition2024 => false,
314            EditionFuture => false,
315        }
316    }
317
318    pub(crate) fn default_resolve_behavior(&self) -> ResolveBehavior {
319        if *self >= Edition::Edition2024 {
320            ResolveBehavior::V3
321        } else if *self >= Edition::Edition2021 {
322            ResolveBehavior::V2
323        } else {
324            ResolveBehavior::V1
325        }
326    }
327}
328
329impl fmt::Display for Edition {
330    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
331        match *self {
332            Edition::Edition2015 => f.write_str("2015"),
333            Edition::Edition2018 => f.write_str("2018"),
334            Edition::Edition2021 => f.write_str("2021"),
335            Edition::Edition2024 => f.write_str("2024"),
336            Edition::EditionFuture => f.write_str("future"),
337        }
338    }
339}
340
341impl FromStr for Edition {
342    type Err = Error;
343    fn from_str(s: &str) -> Result<Self, Error> {
344        match s {
345            "2015" => Ok(Edition::Edition2015),
346            "2018" => Ok(Edition::Edition2018),
347            "2021" => Ok(Edition::Edition2021),
348            "2024" => Ok(Edition::Edition2024),
349            "future" => Ok(Edition::EditionFuture),
350            s if s.parse().map_or(false, |y: u16| y > 2024 && y < 2050) => bail!(
351                "this version of Cargo is older than the `{}` edition, \
352                 and only supports `2015`, `2018`, `2021`, and `2024` editions.",
353                s
354            ),
355            s => bail!(
356                "supported edition values are `2015`, `2018`, `2021`, or `2024`, \
357                 but `{}` is unknown",
358                s
359            ),
360        }
361    }
362}
363
364/// The value for `-Zfix-edition`.
365#[derive(Debug, Deserialize)]
366pub enum FixEdition {
367    /// `-Zfix-edition=start=$INITIAL`
368    ///
369    /// This mode for `cargo fix` will just run `cargo check` if the current
370    /// edition is equal to this edition. If it is a different edition, then
371    /// it just exits with success. This is used for crater integration which
372    /// needs to set a baseline for the "before" toolchain.
373    Start(Edition),
374    /// `-Zfix-edition=end=$INITIAL,$NEXT`
375    ///
376    /// This mode for `cargo fix` will migrate to the `next` edition if the
377    /// current edition is `initial`. After migration, it will update
378    /// `Cargo.toml` and verify that that it works on the new edition. If the
379    /// current edition is not `initial`, then it immediately exits with
380    /// success since we just want to ignore those packages.
381    End { initial: Edition, next: Edition },
382}
383
384impl FromStr for FixEdition {
385    type Err = anyhow::Error;
386    fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
387        if let Some(start) = s.strip_prefix("start=") {
388            Ok(FixEdition::Start(start.parse()?))
389        } else if let Some(end) = s.strip_prefix("end=") {
390            let (initial, next) = end
391                .split_once(',')
392                .ok_or_else(|| anyhow::format_err!("expected `initial,next`"))?;
393            Ok(FixEdition::End {
394                initial: initial.parse()?,
395                next: next.parse()?,
396            })
397        } else {
398            bail!("invalid `-Zfix-edition, expected start= or end=, got `{s}`");
399        }
400    }
401}
402
403#[derive(Debug, PartialEq)]
404enum Status {
405    Stable,
406    Unstable,
407    Removed,
408}
409
410/// A listing of stable and unstable new syntax in Cargo.toml.
411///
412/// This generates definitions and impls for [`Features`] and [`Feature`]
413/// for each new syntax.
414///
415/// Note that all feature names in the macro invocation are valid Rust
416/// identifiers, but the `_` character is translated to `-` when specified in
417/// the `cargo-features` manifest entry in `Cargo.toml`.
418///
419/// See the [module-level documentation](self#new-cargotoml-syntax)
420/// for the process of adding a new syntax.
421macro_rules! features {
422    (
423        $(
424            $(#[$attr:meta])*
425            ($stab:ident, $feature:ident, $version:expr, $docs:expr),
426        )*
427    ) => (
428        /// Unstable feature context for querying if a new Cargo.toml syntax
429        /// is allowed to use.
430        ///
431        /// See the [module-level documentation](self#new-cargotoml-syntax) for the usage.
432        #[derive(Default, Clone, Debug)]
433        pub struct Features {
434            $($feature: bool,)*
435            /// The current activated features.
436            activated: Vec<String>,
437            /// Whether is allowed to use any unstable features.
438            nightly_features_allowed: bool,
439            /// Whether the source manifest is from a local package.
440            is_local: bool,
441        }
442
443        impl Feature {
444            $(
445                $(#[$attr])*
446                #[doc = concat!("\n\n\nSee <https://doc.rust-lang.org/nightly/cargo/", $docs, ">.")]
447                pub const fn $feature() -> &'static Feature {
448                    fn get(features: &Features) -> bool {
449                        stab!($stab) == Status::Stable || features.$feature
450                    }
451                    const FEAT: Feature = Feature {
452                        name: stringify!($feature),
453                        stability: stab!($stab),
454                        version: $version,
455                        docs: $docs,
456                        get,
457                    };
458                    &FEAT
459                }
460            )*
461
462            /// Whether this feature is allowed to use in the given [`Features`] context.
463            fn is_enabled(&self, features: &Features) -> bool {
464                (self.get)(features)
465            }
466
467            pub(crate) fn name(&self) -> &str {
468                self.name
469            }
470        }
471
472        impl Features {
473            fn status(&mut self, feature: &str) -> Option<(&mut bool, &'static Feature)> {
474                if feature.contains("_") {
475                    return None;
476                }
477                let feature = feature.replace("-", "_");
478                $(
479                    if feature == stringify!($feature) {
480                        return Some((&mut self.$feature, Feature::$feature()));
481                    }
482                )*
483                None
484            }
485        }
486    )
487}
488
489macro_rules! stab {
490    (stable) => {
491        Status::Stable
492    };
493    (unstable) => {
494        Status::Unstable
495    };
496    (removed) => {
497        Status::Removed
498    };
499}
500
501// "look here"
502features! {
503    /// A dummy feature that doesn't actually gate anything, but it's used in
504    /// testing to ensure that we can enable stable features.
505    (stable, test_dummy_stable, "1.0", ""),
506
507    /// A dummy feature that gates the usage of the `im-a-teapot` manifest
508    /// entry. This is basically just intended for tests.
509    (unstable, test_dummy_unstable, "", "reference/unstable.html"),
510
511    /// Downloading packages from alternative registry indexes.
512    (stable, alternative_registries, "1.34", "reference/registries.html"),
513
514    /// Using editions
515    (stable, edition, "1.31", "reference/manifest.html#the-edition-field"),
516
517    /// Renaming a package in the manifest via the `package` key.
518    (stable, rename_dependency, "1.31", "reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml"),
519
520    /// Whether a lock file is published with this crate.
521    (removed, publish_lockfile, "1.37", "reference/unstable.html#publish-lockfile"),
522
523    /// Overriding profiles for dependencies.
524    (stable, profile_overrides, "1.41", "reference/profiles.html#overrides"),
525
526    /// "default-run" manifest option.
527    (stable, default_run, "1.37", "reference/manifest.html#the-default-run-field"),
528
529    /// Declarative build scripts.
530    (unstable, metabuild, "", "reference/unstable.html#metabuild"),
531
532    /// Specifying the 'public' attribute on dependencies.
533    (unstable, public_dependency, "", "reference/unstable.html#public-dependency"),
534
535    /// Allow to specify profiles other than 'dev', 'release', 'test', etc.
536    (stable, named_profiles, "1.57", "reference/profiles.html#custom-profiles"),
537
538    /// Opt-in new-resolver behavior.
539    (stable, resolver, "1.51", "reference/resolver.html#resolver-versions"),
540
541    /// Allow to specify whether binaries should be stripped.
542    (stable, strip, "1.58", "reference/profiles.html#strip-option"),
543
544    /// Specifying a minimal 'rust-version' attribute for crates.
545    (stable, rust_version, "1.56", "reference/manifest.html#the-rust-version-field"),
546
547    /// Support for 2021 edition.
548    (stable, edition2021, "1.56", "reference/manifest.html#the-edition-field"),
549
550    /// Allow to specify per-package targets (compile kinds).
551    (unstable, per_package_target, "", "reference/unstable.html#per-package-target"),
552
553    /// Allow to specify which codegen backend should be used.
554    (unstable, codegen_backend, "", "reference/unstable.html#codegen-backend"),
555
556    /// Allow specifying different binary name apart from the crate name.
557    (unstable, different_binary_name, "", "reference/unstable.html#different-binary-name"),
558
559    /// Allow specifying rustflags directly in a profile.
560    (unstable, profile_rustflags, "", "reference/unstable.html#profile-rustflags-option"),
561
562    /// Allow workspace members to inherit fields and dependencies from a workspace.
563    (stable, workspace_inheritance, "1.64", "reference/unstable.html#workspace-inheritance"),
564
565    /// Support for 2024 edition.
566    (stable, edition2024, "1.85", "reference/manifest.html#the-edition-field"),
567
568    /// Allow setting trim-paths in a profile to control the sanitisation of file paths in build outputs.
569    (unstable, trim_paths, "", "reference/unstable.html#profile-trim-paths-option"),
570
571    /// Allow multiple packages to participate in the same API namespace
572    (unstable, open_namespaces, "", "reference/unstable.html#open-namespaces"),
573
574    /// Allow paths that resolve relatively to a base specified in the config.
575    (unstable, path_bases, "", "reference/unstable.html#path-bases"),
576
577    /// Allows use of editions that are not yet stable.
578    (unstable, unstable_editions, "", "reference/unstable.html#unstable-editions"),
579
580    /// Allows use of multiple build scripts.
581    (unstable, multiple_build_scripts, "", "reference/unstable.html#multiple-build-scripts"),
582
583    /// Allows use of panic="immediate-abort".
584    (unstable, panic_immediate_abort, "", "reference/unstable.html#panic-immediate-abort"),
585}
586
587/// Status and metadata for a single unstable feature.
588#[derive(Debug)]
589pub struct Feature {
590    /// Feature name. This is valid Rust identifier so no dash only underscore.
591    name: &'static str,
592    stability: Status,
593    /// Version that this feature was stabilized or removed.
594    version: &'static str,
595    /// Link to the unstable documentation.
596    docs: &'static str,
597    get: fn(&Features) -> bool,
598}
599
600impl Features {
601    /// Creates a new unstable features context.
602    pub fn new(
603        features: &[String],
604        gctx: &GlobalContext,
605        warnings: &mut Vec<String>,
606        is_local: bool,
607    ) -> CargoResult<Features> {
608        let mut ret = Features::default();
609        ret.nightly_features_allowed = gctx.nightly_features_allowed;
610        ret.is_local = is_local;
611        for feature in features {
612            ret.add(feature, gctx, warnings)?;
613            ret.activated.push(feature.to_string());
614        }
615        Ok(ret)
616    }
617
618    fn add(
619        &mut self,
620        feature_name: &str,
621        gctx: &GlobalContext,
622        warnings: &mut Vec<String>,
623    ) -> CargoResult<()> {
624        let nightly_features_allowed = self.nightly_features_allowed;
625        let Some((slot, feature)) = self.status(feature_name) else {
626            let mut msg = format!("unknown Cargo.toml feature `{feature_name}`\n\n");
627            let mut append_see_docs = true;
628
629            if feature_name.contains('_') {
630                let _ = writeln!(msg, "Feature names must use '-' instead of '_'.");
631                append_see_docs = false;
632            } else {
633                let underscore_name = feature_name.replace('-', "_");
634                if CliUnstable::help()
635                    .iter()
636                    .any(|(option, _)| *option == underscore_name)
637                {
638                    let _ = writeln!(
639                        msg,
640                        "This feature can be enabled via -Z{feature_name} or the `[unstable]` section in config.toml."
641                    );
642                }
643            }
644
645            if append_see_docs {
646                let _ = writeln!(
647                    msg,
648                    "See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html for more information."
649                );
650            }
651            bail!(msg)
652        };
653
654        if *slot {
655            bail!(
656                "the cargo feature `{}` has already been activated",
657                feature_name
658            );
659        }
660
661        let see_docs = || {
662            format!(
663                "See {} for more information about using this feature.",
664                cargo_docs_link(feature.docs)
665            )
666        };
667
668        match feature.stability {
669            Status::Stable => {
670                let warning = format!(
671                    "the cargo feature `{}` has been stabilized in the {} \
672                         release and is no longer necessary to be listed in the \
673                         manifest\n  {}",
674                    feature_name,
675                    feature.version,
676                    see_docs()
677                );
678                warnings.push(warning);
679            }
680            Status::Unstable if !nightly_features_allowed => bail!(
681                "the cargo feature `{}` requires a nightly version of \
682                 Cargo, but this is the `{}` channel\n\
683                 {}\n{}",
684                feature_name,
685                channel(),
686                SEE_CHANNELS,
687                see_docs()
688            ),
689            Status::Unstable => {
690                if let Some(allow) = &gctx.cli_unstable().allow_features {
691                    if !allow.contains(feature_name) {
692                        bail!(
693                            "the feature `{}` is not in the list of allowed features: [{}]",
694                            feature_name,
695                            itertools::join(allow, ", "),
696                        );
697                    }
698                }
699            }
700            Status::Removed => {
701                let mut msg = format!(
702                    "the cargo feature `{}` has been removed in the {} release\n\n",
703                    feature_name, feature.version
704                );
705                if self.is_local {
706                    let _ = writeln!(
707                        msg,
708                        "Remove the feature from Cargo.toml to remove this error."
709                    );
710                } else {
711                    let _ = writeln!(
712                        msg,
713                        "This package cannot be used with this version of Cargo, \
714                         as the unstable feature `{}` is no longer supported.",
715                        feature_name
716                    );
717                }
718                let _ = writeln!(msg, "{}", see_docs());
719                bail!(msg);
720            }
721        }
722
723        *slot = true;
724
725        Ok(())
726    }
727
728    /// Gets the current activated features.
729    pub fn activated(&self) -> &[String] {
730        &self.activated
731    }
732
733    /// Checks if the given feature is enabled.
734    pub fn require(&self, feature: &Feature) -> CargoResult<()> {
735        if feature.is_enabled(self) {
736            return Ok(());
737        }
738        let feature_name = feature.name.replace("_", "-");
739        let mut msg = format!(
740            "feature `{}` is required\n\
741             \n\
742             The package requires the Cargo feature called `{}`, but \
743             that feature is not stabilized in this version of Cargo ({}).\n\
744            ",
745            feature_name,
746            feature_name,
747            crate::version(),
748        );
749
750        if self.nightly_features_allowed {
751            if self.is_local {
752                let _ = writeln!(
753                    msg,
754                    "Consider adding `cargo-features = [\"{}\"]` \
755                     to the top of Cargo.toml (above the [package] table) \
756                     to tell Cargo you are opting in to use this unstable feature.",
757                    feature_name
758                );
759            } else {
760                let _ = writeln!(msg, "Consider trying a more recent nightly release.");
761            }
762        } else {
763            let _ = writeln!(
764                msg,
765                "Consider trying a newer version of Cargo \
766                 (this may require the nightly release)."
767            );
768        }
769        let _ = writeln!(
770            msg,
771            "See https://doc.rust-lang.org/nightly/cargo/{} for more information \
772             about the status of this feature.",
773            feature.docs
774        );
775
776        bail!("{}", msg);
777    }
778
779    /// Whether the given feature is allowed to use in this context.
780    pub fn is_enabled(&self, feature: &Feature) -> bool {
781        feature.is_enabled(self)
782    }
783}
784
785/// Generates `-Z` flags as fields of [`CliUnstable`].
786///
787/// See the [module-level documentation](self#-z-options) for details.
788macro_rules! unstable_cli_options {
789    (
790        $(
791            $(#[$meta:meta])?
792            $element: ident: $ty: ty$( = ($help:literal))?,
793        )*
794    ) => {
795        /// A parsed representation of all unstable flags that Cargo accepts.
796        ///
797        /// Cargo, like `rustc`, accepts a suite of `-Z` flags which are intended for
798        /// gating unstable functionality to Cargo. These flags are only available on
799        /// the nightly channel of Cargo.
800        #[derive(Default, Debug, Deserialize)]
801        #[serde(default, rename_all = "kebab-case")]
802        pub struct CliUnstable {
803            $(
804                $(#[doc = $help])?
805                $(#[$meta])?
806                pub $element: $ty
807            ),*
808        }
809        impl CliUnstable {
810            /// Returns a list of `(<option-name>, <help-text>)`.
811            pub fn help() -> Vec<(&'static str, Option<&'static str>)> {
812                let fields = vec![$((stringify!($element), None$(.or(Some($help)))?)),*];
813                fields
814            }
815        }
816
817        #[cfg(test)]
818        mod test {
819            #[test]
820            fn ensure_sorted() {
821                // This will be printed out if the fields are not sorted.
822                let location = std::panic::Location::caller();
823                println!(
824                    "\nTo fix this test, sort the features inside the macro at {}:{}\n",
825                    location.file(),
826                    location.line()
827                );
828                let mut expected = vec![$(stringify!($element)),*];
829                expected[2..].sort();
830                let expected = format!("{:#?}", expected);
831                let actual = format!("{:#?}", vec![$(stringify!($element)),*]);
832                snapbox::assert_data_eq!(actual, expected);
833            }
834        }
835    }
836}
837
838unstable_cli_options!(
839    // Permanently unstable features:
840    allow_features: Option<AllowFeatures> = ("Allow *only* the listed unstable features"),
841    print_im_a_teapot: bool,
842
843    // All other unstable features.
844    // Please keep this list lexicographically ordered.
845    advanced_env: bool,
846    asymmetric_token: bool = ("Allows authenticating with asymmetric tokens"),
847    avoid_dev_deps: bool = ("Avoid installing dev-dependencies if possible"),
848    binary_dep_depinfo: bool = ("Track changes to dependency artifacts"),
849    bindeps: bool = ("Allow Cargo packages to depend on bin, cdylib, and staticlib crates, and use the artifacts built by those crates"),
850    build_analysis: bool = ("Record and persist build metrics across runs, with commands to query past builds."),
851    build_dir_new_layout: bool = ("Use the new build-dir filesystem layout"),
852    #[serde(deserialize_with = "deserialize_comma_separated_list")]
853    build_std: Option<Vec<String>>  = ("Enable Cargo to compile the standard library itself as part of a crate graph compilation"),
854    #[serde(deserialize_with = "deserialize_comma_separated_list")]
855    build_std_features: Option<Vec<String>>  = ("Configure features enabled for the standard library itself when building the standard library"),
856    cargo_lints: bool = ("Enable the `[lints.cargo]` table"),
857    checksum_freshness: bool = ("Use a checksum to determine if output is fresh rather than filesystem mtime"),
858    codegen_backend: bool = ("Enable the `codegen-backend` option in profiles in .cargo/config.toml file"),
859    config_include: bool = ("Enable the `include` key in config files"),
860    direct_minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum (direct dependencies only)"),
861    dual_proc_macros: bool = ("Build proc-macros for both the host and the target"),
862    feature_unification: bool = ("Enable new feature unification modes in workspaces"),
863    features: Option<Vec<String>>,
864    fix_edition: Option<FixEdition> = ("Permanently unstable edition migration helper"),
865    gc: bool = ("Track cache usage and \"garbage collect\" unused files"),
866    #[serde(deserialize_with = "deserialize_git_features")]
867    git: Option<GitFeatures> = ("Enable support for shallow git fetch operations"),
868    #[serde(deserialize_with = "deserialize_gitoxide_features")]
869    gitoxide: Option<GitoxideFeatures> = ("Use gitoxide for the given git interactions, or all of them if no argument is given"),
870    host_config: bool = ("Enable the `[host]` section in the .cargo/config.toml file"),
871    minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum"),
872    msrv_policy: bool = ("Enable rust-version aware policy within cargo"),
873    mtime_on_use: bool = ("Configure Cargo to update the mtime of used files"),
874    next_lockfile_bump: bool,
875    no_embed_metadata: bool = ("Avoid embedding metadata in library artifacts"),
876    no_index_update: bool = ("Do not update the registry index even if the cache is outdated"),
877    panic_abort_tests: bool = ("Enable support to run tests with -Cpanic=abort"),
878    panic_immediate_abort: bool = ("Enable setting `panic = \"immediate-abort\"` in profiles"),
879    profile_hint_mostly_unused: bool = ("Enable the `hint-mostly-unused` setting in profiles to mark a crate as mostly unused."),
880    profile_rustflags: bool = ("Enable the `rustflags` option in profiles in .cargo/config.toml file"),
881    public_dependency: bool = ("Respect a dependency's `public` field in Cargo.toml to control public/private dependencies"),
882    publish_timeout: bool = ("Enable the `publish.timeout` key in .cargo/config.toml file"),
883    root_dir: Option<PathBuf> = ("Set the root directory relative to which paths are printed (defaults to workspace root)"),
884    rustdoc_depinfo: bool = ("Use dep-info files in rustdoc rebuild detection"),
885    rustdoc_map: bool = ("Allow passing external documentation mappings to rustdoc"),
886    rustdoc_scrape_examples: bool = ("Allows Rustdoc to scrape code examples from reverse-dependencies"),
887    sbom: bool = ("Enable the `sbom` option in build config in .cargo/config.toml file"),
888    script: bool = ("Enable support for single-file, `.rs` packages"),
889    section_timings: bool = ("Enable support for extended compilation sections in --timings output"),
890    separate_nightlies: bool,
891    skip_rustdoc_fingerprint: bool,
892    target_applies_to_host: bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
893    trim_paths: bool = ("Enable the `trim-paths` option in profiles"),
894    unstable_options: bool = ("Allow the usage of unstable options"),
895    warnings: bool = ("Allow use of the build.warnings config key"),
896);
897
898const STABILIZED_COMPILE_PROGRESS: &str = "The progress bar is now always \
899    enabled when used on an interactive console.\n\
900    See https://doc.rust-lang.org/cargo/reference/config.html#termprogresswhen \
901    for information on controlling the progress bar.";
902
903const STABILIZED_OFFLINE: &str = "Offline mode is now available via the \
904    --offline CLI option";
905
906const STABILIZED_CACHE_MESSAGES: &str = "Message caching is now always enabled.";
907
908const STABILIZED_INSTALL_UPGRADE: &str = "Packages are now always upgraded if \
909    they appear out of date.\n\
910    See https://doc.rust-lang.org/cargo/commands/cargo-install.html for more \
911    information on how upgrading works.";
912
913const STABILIZED_CONFIG_PROFILE: &str = "See \
914    https://doc.rust-lang.org/cargo/reference/config.html#profile for more \
915    information about specifying profiles in config.";
916
917const STABILIZED_CRATE_VERSIONS: &str = "The crate version is now \
918    automatically added to the documentation.";
919
920const STABILIZED_PACKAGE_FEATURES: &str = "Enhanced feature flag behavior is now \
921    available in virtual workspaces, and `member/feature-name` syntax is also \
922    always available. Other extensions require setting `resolver = \"2\"` in \
923    Cargo.toml.\n\
924    See https://doc.rust-lang.org/nightly/cargo/reference/features.html#resolver-version-2-command-line-flags \
925    for more information.";
926
927const STABILIZED_FEATURES: &str = "The new feature resolver is now available \
928    by specifying `resolver = \"2\"` in Cargo.toml.\n\
929    See https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 \
930    for more information.";
931
932const STABILIZED_EXTRA_LINK_ARG: &str = "Additional linker arguments are now \
933    supported without passing this flag.";
934
935const STABILIZED_CONFIGURABLE_ENV: &str = "The [env] section is now always enabled.";
936
937const STABILIZED_PATCH_IN_CONFIG: &str = "The patch-in-config feature is now always enabled.";
938
939const STABILIZED_NAMED_PROFILES: &str = "The named-profiles feature is now always enabled.\n\
940    See https://doc.rust-lang.org/nightly/cargo/reference/profiles.html#custom-profiles \
941    for more information";
942
943const STABILIZED_DOCTEST_IN_WORKSPACE: &str =
944    "The doctest-in-workspace feature is now always enabled.";
945
946const STABILIZED_FUTURE_INCOMPAT_REPORT: &str =
947    "The future-incompat-report feature is now always enabled.";
948
949const STABILIZED_WEAK_DEP_FEATURES: &str = "Weak dependency features are now always available.";
950
951const STABILISED_NAMESPACED_FEATURES: &str = "Namespaced features are now always available.";
952
953const STABILIZED_TIMINGS: &str = "The -Ztimings option has been stabilized as --timings.";
954
955const STABILISED_MULTITARGET: &str = "Multiple `--target` options are now always available.";
956
957const STABILIZED_TERMINAL_WIDTH: &str =
958    "The -Zterminal-width option is now always enabled for terminal output.";
959
960const STABILISED_SPARSE_REGISTRY: &str = "The sparse protocol is now the default for crates.io";
961
962const STABILIZED_CREDENTIAL_PROCESS: &str =
963    "Authentication with a credential provider is always available.";
964
965const STABILIZED_REGISTRY_AUTH: &str =
966    "Authenticated registries are available if a credential provider is configured.";
967
968const STABILIZED_LINTS: &str = "The `[lints]` table is now always available.";
969
970const STABILIZED_CHECK_CFG: &str =
971    "Compile-time checking of conditional (a.k.a. `-Zcheck-cfg`) is now always enabled.";
972
973const STABILIZED_DOCTEST_XCOMPILE: &str = "Doctest cross-compiling is now always enabled.";
974
975const STABILIZED_PACKAGE_WORKSPACE: &str =
976    "Workspace packaging and publishing (a.k.a. `-Zpackage-workspace`) is now always enabled.";
977
978const STABILIZED_BUILD_DIR: &str = "build.build-dir is now always enabled.";
979
980fn deserialize_comma_separated_list<'de, D>(
981    deserializer: D,
982) -> Result<Option<Vec<String>>, D::Error>
983where
984    D: serde::Deserializer<'de>,
985{
986    let Some(list) = <Option<Vec<String>>>::deserialize(deserializer)? else {
987        return Ok(None);
988    };
989    let v = list
990        .iter()
991        .flat_map(|s| s.split(','))
992        .filter(|s| !s.is_empty())
993        .map(String::from)
994        .collect();
995    Ok(Some(v))
996}
997
998#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
999#[serde(default)]
1000pub struct GitFeatures {
1001    /// When cloning the index, perform a shallow clone. Maintain shallowness upon subsequent fetches.
1002    pub shallow_index: bool,
1003    /// When cloning git dependencies, perform a shallow clone and maintain shallowness on subsequent fetches.
1004    pub shallow_deps: bool,
1005}
1006
1007impl GitFeatures {
1008    pub fn all() -> Self {
1009        GitFeatures {
1010            shallow_index: true,
1011            shallow_deps: true,
1012        }
1013    }
1014
1015    fn expecting() -> String {
1016        let fields = ["`shallow-index`", "`shallow-deps`"];
1017        format!(
1018            "unstable 'git' only takes {} as valid inputs",
1019            fields.join(" and ")
1020        )
1021    }
1022}
1023
1024fn deserialize_git_features<'de, D>(deserializer: D) -> Result<Option<GitFeatures>, D::Error>
1025where
1026    D: serde::de::Deserializer<'de>,
1027{
1028    struct GitFeaturesVisitor;
1029
1030    impl<'de> serde::de::Visitor<'de> for GitFeaturesVisitor {
1031        type Value = Option<GitFeatures>;
1032
1033        fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1034            formatter.write_str(&GitFeatures::expecting())
1035        }
1036
1037        fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1038        where
1039            E: serde::de::Error,
1040        {
1041            if v {
1042                Ok(Some(GitFeatures::all()))
1043            } else {
1044                Ok(None)
1045            }
1046        }
1047
1048        fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1049        where
1050            E: serde::de::Error,
1051        {
1052            Ok(parse_git(s.split(",")).map_err(serde::de::Error::custom)?)
1053        }
1054
1055        fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1056        where
1057            D: serde::de::Deserializer<'de>,
1058        {
1059            let git = GitFeatures::deserialize(deserializer)?;
1060            Ok(Some(git))
1061        }
1062
1063        fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1064        where
1065            V: serde::de::MapAccess<'de>,
1066        {
1067            let mvd = serde::de::value::MapAccessDeserializer::new(map);
1068            Ok(Some(GitFeatures::deserialize(mvd)?))
1069        }
1070    }
1071
1072    deserializer.deserialize_any(GitFeaturesVisitor)
1073}
1074
1075fn parse_git(it: impl Iterator<Item = impl AsRef<str>>) -> CargoResult<Option<GitFeatures>> {
1076    let mut out = GitFeatures::default();
1077    let GitFeatures {
1078        shallow_index,
1079        shallow_deps,
1080    } = &mut out;
1081
1082    for e in it {
1083        match e.as_ref() {
1084            "shallow-index" => *shallow_index = true,
1085            "shallow-deps" => *shallow_deps = true,
1086            _ => {
1087                bail!(GitFeatures::expecting())
1088            }
1089        }
1090    }
1091    Ok(Some(out))
1092}
1093
1094#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
1095#[serde(default)]
1096pub struct GitoxideFeatures {
1097    /// All fetches are done with `gitoxide`, which includes git dependencies as well as the crates index.
1098    pub fetch: bool,
1099    /// Checkout git dependencies using `gitoxide` (submodules are still handled by git2 ATM, and filters
1100    /// like linefeed conversions are unsupported).
1101    pub checkout: bool,
1102    /// A feature flag which doesn't have any meaning except for preventing
1103    /// `__CARGO_USE_GITOXIDE_INSTEAD_OF_GIT2=1` builds to enable all safe `gitoxide` features.
1104    /// That way, `gitoxide` isn't actually used even though it's enabled.
1105    pub internal_use_git2: bool,
1106}
1107
1108impl GitoxideFeatures {
1109    pub fn all() -> Self {
1110        GitoxideFeatures {
1111            fetch: true,
1112            checkout: true,
1113            internal_use_git2: false,
1114        }
1115    }
1116
1117    /// Features we deem safe for everyday use - typically true when all tests pass with them
1118    /// AND they are backwards compatible.
1119    fn safe() -> Self {
1120        GitoxideFeatures {
1121            fetch: true,
1122            checkout: true,
1123            internal_use_git2: false,
1124        }
1125    }
1126
1127    fn expecting() -> String {
1128        let fields = ["`fetch`", "`checkout`", "`internal-use-git2`"];
1129        format!(
1130            "unstable 'gitoxide' only takes {} as valid inputs, for shallow fetches see `-Zgit=shallow-index,shallow-deps`",
1131            fields.join(" and ")
1132        )
1133    }
1134}
1135
1136fn deserialize_gitoxide_features<'de, D>(
1137    deserializer: D,
1138) -> Result<Option<GitoxideFeatures>, D::Error>
1139where
1140    D: serde::de::Deserializer<'de>,
1141{
1142    struct GitoxideFeaturesVisitor;
1143
1144    impl<'de> serde::de::Visitor<'de> for GitoxideFeaturesVisitor {
1145        type Value = Option<GitoxideFeatures>;
1146
1147        fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1148            formatter.write_str(&GitoxideFeatures::expecting())
1149        }
1150
1151        fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1152        where
1153            E: serde::de::Error,
1154        {
1155            Ok(parse_gitoxide(s.split(",")).map_err(serde::de::Error::custom)?)
1156        }
1157
1158        fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1159        where
1160            E: serde::de::Error,
1161        {
1162            if v {
1163                Ok(Some(GitoxideFeatures::all()))
1164            } else {
1165                Ok(None)
1166            }
1167        }
1168
1169        fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1170        where
1171            D: serde::de::Deserializer<'de>,
1172        {
1173            let gitoxide = GitoxideFeatures::deserialize(deserializer)?;
1174            Ok(Some(gitoxide))
1175        }
1176
1177        fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1178        where
1179            V: serde::de::MapAccess<'de>,
1180        {
1181            let mvd = serde::de::value::MapAccessDeserializer::new(map);
1182            Ok(Some(GitoxideFeatures::deserialize(mvd)?))
1183        }
1184    }
1185
1186    deserializer.deserialize_any(GitoxideFeaturesVisitor)
1187}
1188
1189fn parse_gitoxide(
1190    it: impl Iterator<Item = impl AsRef<str>>,
1191) -> CargoResult<Option<GitoxideFeatures>> {
1192    let mut out = GitoxideFeatures::default();
1193    let GitoxideFeatures {
1194        fetch,
1195        checkout,
1196        internal_use_git2,
1197    } = &mut out;
1198
1199    for e in it {
1200        match e.as_ref() {
1201            "fetch" => *fetch = true,
1202            "checkout" => *checkout = true,
1203            "internal-use-git2" => *internal_use_git2 = true,
1204            _ => {
1205                bail!(GitoxideFeatures::expecting())
1206            }
1207        }
1208    }
1209    Ok(Some(out))
1210}
1211
1212impl CliUnstable {
1213    /// Parses `-Z` flags from the command line, and returns messages that warn
1214    /// if any flag has already been stabilized.
1215    pub fn parse(
1216        &mut self,
1217        flags: &[String],
1218        nightly_features_allowed: bool,
1219    ) -> CargoResult<Vec<String>> {
1220        if !flags.is_empty() && !nightly_features_allowed {
1221            bail!(
1222                "the `-Z` flag is only accepted on the nightly channel of Cargo, \
1223                 but this is the `{}` channel\n\
1224                 {}",
1225                channel(),
1226                SEE_CHANNELS
1227            );
1228        }
1229        let mut warnings = Vec::new();
1230        // We read flags twice, first to get allowed-features (if specified),
1231        // and then to read the remaining unstable flags.
1232        for flag in flags {
1233            if flag.starts_with("allow-features=") {
1234                self.add(flag, &mut warnings)?;
1235            }
1236        }
1237        for flag in flags {
1238            self.add(flag, &mut warnings)?;
1239        }
1240
1241        if self.gitoxide.is_none() && cargo_use_gitoxide_instead_of_git2() {
1242            self.gitoxide = GitoxideFeatures::safe().into();
1243        }
1244        Ok(warnings)
1245    }
1246
1247    fn add(&mut self, flag: &str, warnings: &mut Vec<String>) -> CargoResult<()> {
1248        let mut parts = flag.splitn(2, '=');
1249        let k = parts.next().unwrap();
1250        let v = parts.next();
1251
1252        fn parse_bool(key: &str, value: Option<&str>) -> CargoResult<bool> {
1253            match value {
1254                None | Some("yes") => Ok(true),
1255                Some("no") => Ok(false),
1256                Some(s) => bail!("flag -Z{} expected `no` or `yes`, found: `{}`", key, s),
1257            }
1258        }
1259
1260        /// Parse a comma-separated list
1261        fn parse_list(value: Option<&str>) -> Vec<String> {
1262            match value {
1263                None => Vec::new(),
1264                Some("") => Vec::new(),
1265                Some(v) => v.split(',').map(|s| s.to_string()).collect(),
1266            }
1267        }
1268
1269        // Asserts that there is no argument to the flag.
1270        fn parse_empty(key: &str, value: Option<&str>) -> CargoResult<bool> {
1271            if let Some(v) = value {
1272                bail!("flag -Z{} does not take a value, found: `{}`", key, v);
1273            }
1274            Ok(true)
1275        }
1276
1277        let mut stabilized_warn = |key: &str, version: &str, message: &str| {
1278            warnings.push(format!(
1279                "flag `-Z {}` has been stabilized in the {} release, \
1280                 and is no longer necessary\n{}",
1281                key,
1282                version,
1283                indented_lines(message)
1284            ));
1285        };
1286
1287        // Use this if the behavior now requires another mechanism to enable.
1288        let stabilized_err = |key: &str, version: &str, message: &str| {
1289            Err(anyhow::format_err!(
1290                "flag `-Z {}` has been stabilized in the {} release\n{}",
1291                key,
1292                version,
1293                indented_lines(message)
1294            ))
1295        };
1296
1297        if let Some(allowed) = &self.allow_features {
1298            if k != "allow-features" && !allowed.contains(k) {
1299                bail!(
1300                    "the feature `{}` is not in the list of allowed features: [{}]",
1301                    k,
1302                    itertools::join(allowed, ", ")
1303                );
1304            }
1305        }
1306
1307        match k {
1308            // Permanently unstable features
1309            // Sorted alphabetically:
1310            "allow-features" => self.allow_features = Some(parse_list(v).into_iter().collect()),
1311            "print-im-a-teapot" => self.print_im_a_teapot = parse_bool(k, v)?,
1312
1313            // Stabilized features
1314            // Sorted by version, then alphabetically:
1315            "compile-progress" => stabilized_warn(k, "1.30", STABILIZED_COMPILE_PROGRESS),
1316            "offline" => stabilized_err(k, "1.36", STABILIZED_OFFLINE)?,
1317            "cache-messages" => stabilized_warn(k, "1.40", STABILIZED_CACHE_MESSAGES),
1318            "install-upgrade" => stabilized_warn(k, "1.41", STABILIZED_INSTALL_UPGRADE),
1319            "config-profile" => stabilized_warn(k, "1.43", STABILIZED_CONFIG_PROFILE),
1320            "crate-versions" => stabilized_warn(k, "1.47", STABILIZED_CRATE_VERSIONS),
1321            "features" => {
1322                // `-Z features` has been stabilized since 1.51,
1323                // but `-Z features=compare` is still allowed for convenience
1324                // to validate that the feature resolver resolves features
1325                // in the same way as the dependency resolver,
1326                // until we feel confident to remove entirely.
1327                //
1328                // See rust-lang/cargo#11168
1329                let feats = parse_list(v);
1330                let stab_is_not_empty = feats.iter().any(|feat| {
1331                    matches!(
1332                        feat.as_str(),
1333                        "build_dep" | "host_dep" | "dev_dep" | "itarget" | "all"
1334                    )
1335                });
1336                if stab_is_not_empty || feats.is_empty() {
1337                    // Make this stabilized_err once -Zfeature support is removed.
1338                    stabilized_warn(k, "1.51", STABILIZED_FEATURES);
1339                }
1340                self.features = Some(feats);
1341            }
1342            "package-features" => stabilized_warn(k, "1.51", STABILIZED_PACKAGE_FEATURES),
1343            "configurable-env" => stabilized_warn(k, "1.56", STABILIZED_CONFIGURABLE_ENV),
1344            "extra-link-arg" => stabilized_warn(k, "1.56", STABILIZED_EXTRA_LINK_ARG),
1345            "patch-in-config" => stabilized_warn(k, "1.56", STABILIZED_PATCH_IN_CONFIG),
1346            "named-profiles" => stabilized_warn(k, "1.57", STABILIZED_NAMED_PROFILES),
1347            "future-incompat-report" => {
1348                stabilized_warn(k, "1.59.0", STABILIZED_FUTURE_INCOMPAT_REPORT)
1349            }
1350            "namespaced-features" => stabilized_warn(k, "1.60", STABILISED_NAMESPACED_FEATURES),
1351            "timings" => stabilized_warn(k, "1.60", STABILIZED_TIMINGS),
1352            "weak-dep-features" => stabilized_warn(k, "1.60", STABILIZED_WEAK_DEP_FEATURES),
1353            "multitarget" => stabilized_warn(k, "1.64", STABILISED_MULTITARGET),
1354            "sparse-registry" => stabilized_warn(k, "1.68", STABILISED_SPARSE_REGISTRY),
1355            "terminal-width" => stabilized_warn(k, "1.68", STABILIZED_TERMINAL_WIDTH),
1356            "doctest-in-workspace" => stabilized_warn(k, "1.72", STABILIZED_DOCTEST_IN_WORKSPACE),
1357            "credential-process" => stabilized_warn(k, "1.74", STABILIZED_CREDENTIAL_PROCESS),
1358            "lints" => stabilized_warn(k, "1.74", STABILIZED_LINTS),
1359            "registry-auth" => stabilized_warn(k, "1.74", STABILIZED_REGISTRY_AUTH),
1360            "check-cfg" => stabilized_warn(k, "1.80", STABILIZED_CHECK_CFG),
1361            "doctest-xcompile" => stabilized_warn(k, "1.89", STABILIZED_DOCTEST_XCOMPILE),
1362            "package-workspace" => stabilized_warn(k, "1.89", STABILIZED_PACKAGE_WORKSPACE),
1363            "build-dir" => stabilized_warn(k, "1.91", STABILIZED_BUILD_DIR),
1364
1365            // Unstable features
1366            // Sorted alphabetically:
1367            "advanced-env" => self.advanced_env = parse_empty(k, v)?,
1368            "asymmetric-token" => self.asymmetric_token = parse_empty(k, v)?,
1369            "avoid-dev-deps" => self.avoid_dev_deps = parse_empty(k, v)?,
1370            "binary-dep-depinfo" => self.binary_dep_depinfo = parse_empty(k, v)?,
1371            "bindeps" => self.bindeps = parse_empty(k, v)?,
1372            "build-analysis" => self.build_analysis = parse_empty(k, v)?,
1373            "build-dir-new-layout" => self.build_dir_new_layout = parse_empty(k, v)?,
1374            "build-std" => self.build_std = Some(parse_list(v)),
1375            "build-std-features" => self.build_std_features = Some(parse_list(v)),
1376            "cargo-lints" => self.cargo_lints = parse_empty(k, v)?,
1377            "codegen-backend" => self.codegen_backend = parse_empty(k, v)?,
1378            "config-include" => self.config_include = parse_empty(k, v)?,
1379            "direct-minimal-versions" => self.direct_minimal_versions = parse_empty(k, v)?,
1380            "dual-proc-macros" => self.dual_proc_macros = parse_empty(k, v)?,
1381            "feature-unification" => self.feature_unification = parse_empty(k, v)?,
1382            "fix-edition" => {
1383                let fe = v
1384                    .ok_or_else(|| anyhow::anyhow!("-Zfix-edition expected a value"))?
1385                    .parse()?;
1386                self.fix_edition = Some(fe);
1387            }
1388            "gc" => self.gc = parse_empty(k, v)?,
1389            "git" => {
1390                self.git =
1391                    v.map_or_else(|| Ok(Some(GitFeatures::all())), |v| parse_git(v.split(',')))?
1392            }
1393            "gitoxide" => {
1394                self.gitoxide = v.map_or_else(
1395                    || Ok(Some(GitoxideFeatures::all())),
1396                    |v| parse_gitoxide(v.split(',')),
1397                )?
1398            }
1399            "host-config" => self.host_config = parse_empty(k, v)?,
1400            "next-lockfile-bump" => self.next_lockfile_bump = parse_empty(k, v)?,
1401            "minimal-versions" => self.minimal_versions = parse_empty(k, v)?,
1402            "msrv-policy" => self.msrv_policy = parse_empty(k, v)?,
1403            // can also be set in .cargo/config or with and ENV
1404            "mtime-on-use" => self.mtime_on_use = parse_empty(k, v)?,
1405            "no-embed-metadata" => self.no_embed_metadata = parse_empty(k, v)?,
1406            "no-index-update" => self.no_index_update = parse_empty(k, v)?,
1407            "panic-abort-tests" => self.panic_abort_tests = parse_empty(k, v)?,
1408            "public-dependency" => self.public_dependency = parse_empty(k, v)?,
1409            "profile-hint-mostly-unused" => self.profile_hint_mostly_unused = parse_empty(k, v)?,
1410            "profile-rustflags" => self.profile_rustflags = parse_empty(k, v)?,
1411            "trim-paths" => self.trim_paths = parse_empty(k, v)?,
1412            "publish-timeout" => self.publish_timeout = parse_empty(k, v)?,
1413            "root-dir" => self.root_dir = v.map(|v| v.into()),
1414            "rustdoc-depinfo" => self.rustdoc_depinfo = parse_empty(k, v)?,
1415            "rustdoc-map" => self.rustdoc_map = parse_empty(k, v)?,
1416            "rustdoc-scrape-examples" => self.rustdoc_scrape_examples = parse_empty(k, v)?,
1417            "sbom" => self.sbom = parse_empty(k, v)?,
1418            "section-timings" => self.section_timings = parse_empty(k, v)?,
1419            "separate-nightlies" => self.separate_nightlies = parse_empty(k, v)?,
1420            "checksum-freshness" => self.checksum_freshness = parse_empty(k, v)?,
1421            "skip-rustdoc-fingerprint" => self.skip_rustdoc_fingerprint = parse_empty(k, v)?,
1422            "script" => self.script = parse_empty(k, v)?,
1423            "target-applies-to-host" => self.target_applies_to_host = parse_empty(k, v)?,
1424            "panic-immediate-abort" => self.panic_immediate_abort = parse_empty(k, v)?,
1425            "unstable-options" => self.unstable_options = parse_empty(k, v)?,
1426            "warnings" => self.warnings = parse_empty(k, v)?,
1427            _ => bail!(
1428                "\
1429            unknown `-Z` flag specified: {k}\n\n\
1430            For available unstable features, see \
1431            https://doc.rust-lang.org/nightly/cargo/reference/unstable.html\n\
1432            If you intended to use an unstable rustc feature, try setting `RUSTFLAGS=\"-Z{k}\"`"
1433            ),
1434        }
1435
1436        Ok(())
1437    }
1438
1439    /// Generates an error if `-Z unstable-options` was not used for a new,
1440    /// unstable command-line flag.
1441    pub fn fail_if_stable_opt(&self, flag: &str, issue: u32) -> CargoResult<()> {
1442        self.fail_if_stable_opt_custom_z(flag, issue, "unstable-options", self.unstable_options)
1443    }
1444
1445    pub fn fail_if_stable_opt_custom_z(
1446        &self,
1447        flag: &str,
1448        issue: u32,
1449        z_name: &str,
1450        enabled: bool,
1451    ) -> CargoResult<()> {
1452        if !enabled {
1453            let see = format!(
1454                "See https://github.com/rust-lang/cargo/issues/{issue} for more \
1455                 information about the `{flag}` flag."
1456            );
1457            // NOTE: a `config` isn't available here, check the channel directly
1458            let channel = channel();
1459            if channel == "nightly" || channel == "dev" {
1460                bail!(
1461                    "the `{flag}` flag is unstable, pass `-Z {z_name}` to enable it\n\
1462                     {see}"
1463                );
1464            } else {
1465                bail!(
1466                    "the `{flag}` flag is unstable, and only available on the nightly channel \
1467                     of Cargo, but this is the `{channel}` channel\n\
1468                     {SEE_CHANNELS}\n\
1469                     {see}"
1470                );
1471            }
1472        }
1473        Ok(())
1474    }
1475
1476    /// Generates an error if `-Z unstable-options` was not used for a new,
1477    /// unstable subcommand.
1478    pub fn fail_if_stable_command(
1479        &self,
1480        gctx: &GlobalContext,
1481        command: &str,
1482        issue: u32,
1483        z_name: &str,
1484        enabled: bool,
1485    ) -> CargoResult<()> {
1486        if enabled {
1487            return Ok(());
1488        }
1489        let see = format!(
1490            "See https://github.com/rust-lang/cargo/issues/{} for more \
1491            information about the `cargo {}` command.",
1492            issue, command
1493        );
1494        if gctx.nightly_features_allowed {
1495            bail!(
1496                "the `cargo {command}` command is unstable, pass `-Z {z_name}` \
1497                 to enable it\n\
1498                 {see}",
1499            );
1500        } else {
1501            bail!(
1502                "the `cargo {}` command is unstable, and only available on the \
1503                 nightly channel of Cargo, but this is the `{}` channel\n\
1504                 {}\n\
1505                 {}",
1506                command,
1507                channel(),
1508                SEE_CHANNELS,
1509                see
1510            );
1511        }
1512    }
1513}
1514
1515/// Returns the current release channel ("stable", "beta", "nightly", "dev").
1516pub fn channel() -> String {
1517    // ALLOWED: For testing cargo itself only.
1518    #[allow(clippy::disallowed_methods)]
1519    if let Ok(override_channel) = env::var("__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS") {
1520        return override_channel;
1521    }
1522    // ALLOWED: the process of rustc bootstrapping reads this through
1523    // `std::env`. We should make the behavior consistent. Also, we
1524    // don't advertise this for bypassing nightly.
1525    #[allow(clippy::disallowed_methods)]
1526    if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
1527        if staging == "1" {
1528            return "dev".to_string();
1529        }
1530    }
1531    crate::version()
1532        .release_channel
1533        .unwrap_or_else(|| String::from("dev"))
1534}
1535
1536/// Only for testing and developing. See ["Running with gitoxide as default git backend in tests"][1].
1537///
1538/// [1]: https://doc.crates.io/contrib/tests/running.html#running-with-gitoxide-as-default-git-backend-in-tests
1539// ALLOWED: For testing cargo itself only.
1540#[allow(clippy::disallowed_methods)]
1541fn cargo_use_gitoxide_instead_of_git2() -> bool {
1542    std::env::var_os("__CARGO_USE_GITOXIDE_INSTEAD_OF_GIT2").map_or(false, |value| value == "1")
1543}
1544
1545/// Generate a link to Cargo documentation for the current release channel
1546/// `path` is the URL component after `https://doc.rust-lang.org/{channel}/cargo/`
1547pub fn cargo_docs_link(path: &str) -> String {
1548    let url_channel = match channel().as_str() {
1549        "dev" | "nightly" => "nightly/",
1550        "beta" => "beta/",
1551        _ => "",
1552    };
1553    format!("https://doc.rust-lang.org/{url_channel}cargo/{path}")
1554}