1use 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};
130use tracing::debug;
131
132use crate::GlobalContext;
133use crate::resolver::ResolveBehavior;
134use crate::util::errors::CargoResult;
135use crate::util::indented_lines;
136
137pub const SEE_CHANNELS: &str = "See https://doc.rust-lang.org/book/appendix-07-nightly-rust.html for more information \
138 about Rust release channels.";
139
140pub type AllowFeatures = BTreeSet<String>;
142
143#[derive(
181 Default, Clone, Copy, Debug, Hash, PartialOrd, Ord, Eq, PartialEq, Serialize, Deserialize,
182)]
183pub enum Edition {
184 #[default]
186 Edition2015,
187 Edition2018,
189 Edition2021,
191 Edition2024,
193 EditionFuture,
195}
196
197impl Edition {
198 pub const LATEST_UNSTABLE: Option<Edition> = None;
205 pub const LATEST_STABLE: Edition = Edition::Edition2024;
207 pub const ALL: &'static [Edition] = &[
208 Self::Edition2015,
209 Self::Edition2018,
210 Self::Edition2021,
211 Self::Edition2024,
212 Self::EditionFuture,
213 ];
214 pub const CLI_VALUES: [&'static str; 4] = ["2015", "2018", "2021", "2024"];
222
223 pub(crate) fn first_version(&self) -> Option<semver::Version> {
226 use Edition::*;
227 match self {
228 Edition2015 => None,
229 Edition2018 => Some(semver::Version::new(1, 31, 0)),
230 Edition2021 => Some(semver::Version::new(1, 56, 0)),
231 Edition2024 => Some(semver::Version::new(1, 85, 0)),
232 EditionFuture => None,
233 }
234 }
235
236 pub fn is_stable(&self) -> bool {
238 use Edition::*;
239 match self {
240 Edition2015 => true,
241 Edition2018 => true,
242 Edition2021 => true,
243 Edition2024 => true,
244 EditionFuture => false,
245 }
246 }
247
248 pub fn previous(&self) -> Option<Edition> {
252 use Edition::*;
253 match self {
254 Edition2015 => None,
255 Edition2018 => Some(Edition2015),
256 Edition2021 => Some(Edition2018),
257 Edition2024 => Some(Edition2021),
258 EditionFuture => panic!("future does not have a previous edition"),
259 }
260 }
261
262 pub fn saturating_next(&self) -> Edition {
265 use Edition::*;
266 match self {
268 Edition2015 => Edition2018,
269 Edition2018 => Edition2021,
270 Edition2021 => Edition2024,
271 Edition2024 => Edition2024,
272 EditionFuture => EditionFuture,
273 }
274 }
275
276 pub(crate) fn cmd_edition_arg(&self, cmd: &mut ProcessBuilder) {
279 cmd.arg(format!("--edition={}", self));
280 if !self.is_stable() {
281 cmd.arg("-Z").arg("unstable-options");
282 }
283 }
284
285 pub(crate) fn force_warn_arg(&self, cmd: &mut ProcessBuilder) {
287 use Edition::*;
288 match self {
289 Edition2015 => {}
290 EditionFuture => {
291 cmd.arg("--force-warn=edition_future_compatibility");
292 }
293 e => {
294 cmd.arg(format!("--force-warn=rust-{e}-compatibility"));
301 }
302 }
303 }
304
305 pub(crate) fn supports_idiom_lint(&self) -> bool {
309 use Edition::*;
310 match self {
311 Edition2015 => false,
312 Edition2018 => true,
313 Edition2021 => false,
314 Edition2024 => false,
315 EditionFuture => false,
316 }
317 }
318
319 pub(crate) fn default_resolve_behavior(&self) -> ResolveBehavior {
320 if *self >= Edition::Edition2024 {
321 ResolveBehavior::V3
322 } else if *self >= Edition::Edition2021 {
323 ResolveBehavior::V2
324 } else {
325 ResolveBehavior::V1
326 }
327 }
328}
329
330impl fmt::Display for Edition {
331 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
332 match *self {
333 Edition::Edition2015 => f.write_str("2015"),
334 Edition::Edition2018 => f.write_str("2018"),
335 Edition::Edition2021 => f.write_str("2021"),
336 Edition::Edition2024 => f.write_str("2024"),
337 Edition::EditionFuture => f.write_str("future"),
338 }
339 }
340}
341
342impl FromStr for Edition {
343 type Err = Error;
344 fn from_str(s: &str) -> Result<Self, Error> {
345 match s {
346 "2015" => Ok(Edition::Edition2015),
347 "2018" => Ok(Edition::Edition2018),
348 "2021" => Ok(Edition::Edition2021),
349 "2024" => Ok(Edition::Edition2024),
350 "future" => Ok(Edition::EditionFuture),
351 s if s.parse().map_or(false, |y: u16| y > 2024 && y < 2050) => bail!(
352 "this version of Cargo is older than the `{}` edition, \
353 and only supports `2015`, `2018`, `2021`, and `2024` editions.",
354 s
355 ),
356 s => bail!(
357 "supported edition values are `2015`, `2018`, `2021`, or `2024`, \
358 but `{}` is unknown",
359 s
360 ),
361 }
362 }
363}
364
365#[derive(Debug, Deserialize)]
367pub enum FixEdition {
368 Start(Edition),
375 End { initial: Edition, next: Edition },
383}
384
385impl FromStr for FixEdition {
386 type Err = anyhow::Error;
387 fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
388 if let Some(start) = s.strip_prefix("start=") {
389 Ok(FixEdition::Start(start.parse()?))
390 } else if let Some(end) = s.strip_prefix("end=") {
391 let (initial, next) = end
392 .split_once(',')
393 .ok_or_else(|| anyhow::format_err!("expected `initial,next`"))?;
394 Ok(FixEdition::End {
395 initial: initial.parse()?,
396 next: next.parse()?,
397 })
398 } else {
399 bail!("invalid `-Zfix-edition, expected start= or end=, got `{s}`");
400 }
401 }
402}
403
404#[derive(Debug, PartialEq)]
405enum Status {
406 Stable,
407 Unstable,
408 Removed,
409}
410
411macro_rules! features {
423 (
424 $(
425 $(#[$attr:meta])*
426 ($stab:ident, $feature:ident, $version:expr, $docs:expr),
427 )*
428 ) => (
429 #[derive(Default, Clone, Debug)]
434 pub struct Features {
435 $($feature: bool,)*
436 activated: Vec<String>,
438 nightly_features_allowed: bool,
440 is_local: bool,
442 }
443
444 impl Feature {
445 $(
446 $(#[$attr])*
447 #[doc = concat!("\n\n\nSee <https://doc.rust-lang.org/nightly/cargo/", $docs, ">.")]
448 pub const fn $feature() -> &'static Feature {
449 fn get(features: &Features) -> bool {
450 stab!($stab) == Status::Stable || features.$feature
451 }
452 const FEAT: Feature = Feature {
453 name: stringify!($feature),
454 stability: stab!($stab),
455 version: $version,
456 docs: $docs,
457 get,
458 };
459 &FEAT
460 }
461 )*
462
463 fn is_enabled(&self, features: &Features) -> bool {
465 (self.get)(features)
466 }
467
468 pub(crate) fn name(&self) -> &str {
469 self.name
470 }
471 }
472
473 impl Features {
474 fn status(&mut self, feature: &str) -> Option<(&mut bool, &'static Feature)> {
475 if feature.contains("_") {
476 return None;
477 }
478 let feature = feature.replace("-", "_");
479 $(
480 if feature == stringify!($feature) {
481 return Some((&mut self.$feature, Feature::$feature()));
482 }
483 )*
484 None
485 }
486 }
487 )
488}
489
490macro_rules! stab {
491 (stable) => {
492 Status::Stable
493 };
494 (unstable) => {
495 Status::Unstable
496 };
497 (removed) => {
498 Status::Removed
499 };
500}
501
502features! {
504 (stable, test_dummy_stable, "1.0", ""),
507
508 (unstable, test_dummy_unstable, "", "reference/unstable.html"),
511
512 (stable, alternative_registries, "1.34", "reference/registries.html"),
514
515 (stable, edition, "1.31", "reference/manifest.html#the-edition-field"),
517
518 (stable, rename_dependency, "1.31", "reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml"),
520
521 (removed, publish_lockfile, "1.37", "reference/unstable.html#publish-lockfile"),
523
524 (stable, profile_overrides, "1.41", "reference/profiles.html#overrides"),
526
527 (stable, default_run, "1.37", "reference/manifest.html#the-default-run-field"),
529
530 (unstable, metabuild, "", "reference/unstable.html#metabuild"),
532
533 (unstable, public_dependency, "", "reference/unstable.html#public-dependency"),
535
536 (stable, named_profiles, "1.57", "reference/profiles.html#custom-profiles"),
538
539 (stable, resolver, "1.51", "reference/resolver.html#resolver-versions"),
541
542 (stable, strip, "1.58", "reference/profiles.html#strip-option"),
544
545 (stable, rust_version, "1.56", "reference/manifest.html#the-rust-version-field"),
547
548 (stable, edition2021, "1.56", "reference/manifest.html#the-edition-field"),
550
551 (unstable, per_package_target, "", "reference/unstable.html#per-package-target"),
553
554 (unstable, codegen_backend, "", "reference/unstable.html#codegen-backend"),
556
557 (unstable, different_binary_name, "", "reference/unstable.html#different-binary-name"),
559
560 (unstable, profile_rustflags, "", "reference/unstable.html#profile-rustflags-option"),
562
563 (stable, workspace_inheritance, "1.64", "reference/unstable.html#workspace-inheritance"),
565
566 (stable, edition2024, "1.85", "reference/manifest.html#the-edition-field"),
568
569 (unstable, trim_paths, "", "reference/unstable.html#profile-trim-paths-option"),
571
572 (unstable, open_namespaces, "", "reference/unstable.html#open-namespaces"),
574
575 (unstable, path_bases, "", "reference/unstable.html#path-bases"),
577
578 (unstable, unstable_editions, "", "reference/unstable.html#unstable-editions"),
580
581 (unstable, multiple_build_scripts, "", "reference/unstable.html#multiple-build-scripts"),
583
584 (unstable, panic_immediate_abort, "", "reference/unstable.html#panic-immediate-abort"),
586}
587
588#[derive(Debug)]
590pub struct Feature {
591 name: &'static str,
593 stability: Status,
594 version: &'static str,
596 docs: &'static str,
598 get: fn(&Features) -> bool,
599}
600
601impl Features {
602 pub fn new(
604 features: &[String],
605 gctx: &GlobalContext,
606 warnings: &mut Vec<String>,
607 is_local: bool,
608 ) -> CargoResult<Features> {
609 let mut ret = Features::default();
610 ret.nightly_features_allowed = gctx.nightly_features_allowed;
611 ret.is_local = is_local;
612 for feature in features {
613 ret.add(feature, gctx, warnings)?;
614 ret.activated.push(feature.to_string());
615 }
616 Ok(ret)
617 }
618
619 fn add(
620 &mut self,
621 feature_name: &str,
622 gctx: &GlobalContext,
623 warnings: &mut Vec<String>,
624 ) -> CargoResult<()> {
625 let nightly_features_allowed = self.nightly_features_allowed;
626 let Some((slot, feature)) = self.status(feature_name) else {
627 let mut msg = format!("unknown Cargo.toml feature `{feature_name}`\n\n");
628 let mut append_see_docs = true;
629
630 if feature_name.contains('_') {
631 let _ = writeln!(msg, "Feature names must use '-' instead of '_'.");
632 append_see_docs = false;
633 } else {
634 let underscore_name = feature_name.replace('-', "_");
635 if CliUnstable::help()
636 .iter()
637 .any(|(option, _)| *option == underscore_name)
638 {
639 let _ = writeln!(
640 msg,
641 "This feature can be enabled via -Z{feature_name} or the `[unstable]` section in config.toml."
642 );
643 }
644 }
645
646 if append_see_docs {
647 let _ = writeln!(
648 msg,
649 "See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html for more information."
650 );
651 }
652 bail!(msg)
653 };
654
655 if *slot {
656 bail!(
657 "the cargo feature `{}` has already been activated",
658 feature_name
659 );
660 }
661
662 let see_docs = || {
663 format!(
664 "See {} for more information about using this feature.",
665 cargo_docs_link(feature.docs)
666 )
667 };
668
669 match feature.stability {
670 Status::Stable => {
671 let warning = format!(
672 "the cargo feature `{}` has been stabilized in the {} \
673 release and is no longer necessary to be listed in the \
674 manifest\n {}",
675 feature_name,
676 feature.version,
677 see_docs()
678 );
679 warnings.push(warning);
680 }
681 Status::Unstable if !nightly_features_allowed => bail!(
682 "the cargo feature `{}` requires a nightly version of \
683 Cargo, but this is the `{}` channel\n\
684 {}\n{}",
685 feature_name,
686 channel(),
687 SEE_CHANNELS,
688 see_docs()
689 ),
690 Status::Unstable => {
691 if let Some(allow) = &gctx.cli_unstable().allow_features {
692 if !allow.contains(feature_name) {
693 bail!(
694 "the feature `{}` is not in the list of allowed features: [{}]",
695 feature_name,
696 itertools::join(allow, ", "),
697 );
698 }
699 }
700 }
701 Status::Removed => {
702 let mut msg = format!(
703 "the cargo feature `{}` has been removed in the {} release\n\n",
704 feature_name, feature.version
705 );
706 if self.is_local {
707 let _ = writeln!(
708 msg,
709 "Remove the feature from Cargo.toml to remove this error."
710 );
711 } else {
712 let _ = writeln!(
713 msg,
714 "This package cannot be used with this version of Cargo, \
715 as the unstable feature `{}` is no longer supported.",
716 feature_name
717 );
718 }
719 let _ = writeln!(msg, "{}", see_docs());
720 bail!(msg);
721 }
722 }
723
724 *slot = true;
725
726 Ok(())
727 }
728
729 pub fn activated(&self) -> &[String] {
731 &self.activated
732 }
733
734 pub fn require(&self, feature: &Feature) -> CargoResult<()> {
736 self.require_with_hint(feature, None)
737 }
738
739 pub(crate) fn require_with_hint(
745 &self,
746 feature: &Feature,
747 hint: Option<&str>,
748 ) -> CargoResult<()> {
749 if feature.is_enabled(self) {
750 return Ok(());
751 }
752 let feature_name = feature.name.replace("_", "-");
753 let mut msg = format!(
754 "feature `{}` is required\n\
755 \n\
756 The package requires the Cargo feature called `{}`, but \
757 that feature is not stabilized in this version of Cargo ({}).\n\
758 ",
759 feature_name,
760 feature_name,
761 crate::version(),
762 );
763
764 if self.nightly_features_allowed {
765 if self.is_local {
766 let _ = writeln!(
767 msg,
768 "Consider adding `cargo-features = [\"{}\"]` \
769 to the top of Cargo.toml (above the [package] table) \
770 to tell Cargo you are opting in to use this unstable feature.",
771 feature_name
772 );
773 } else {
774 let _ = writeln!(msg, "Consider trying a more recent nightly release.");
775 }
776 } else {
777 let _ = writeln!(
778 msg,
779 "Consider trying a newer version of Cargo \
780 (this may require the nightly release)."
781 );
782 }
783 let _ = writeln!(
784 msg,
785 "See https://doc.rust-lang.org/nightly/cargo/{} for more information \
786 about the status of this feature.",
787 feature.docs
788 );
789 if let Some(hint) = hint {
790 let _ = writeln!(msg, "{hint}");
791 }
792
793 bail!("{}", msg);
794 }
795
796 pub fn is_enabled(&self, feature: &Feature) -> bool {
798 feature.is_enabled(self)
799 }
800}
801
802macro_rules! unstable_cli_options {
806 (
807 $(
808 $(#[$meta:meta])?
809 $element: ident: $ty: ty$( = ($help:literal))?,
810 )*
811 ) => {
812 #[derive(Debug, Deserialize)]
818 #[serde(default, rename_all = "kebab-case")]
819 pub struct CliUnstable {
820 $(
821 $(#[doc = $help])?
822 $(#[$meta])?
823 pub $element: $ty
824 ),*
825 }
826 impl CliUnstable {
827 pub fn help() -> Vec<(&'static str, Option<&'static str>)> {
829 let fields = vec![$((stringify!($element), None$(.or(Some($help)))?)),*];
830 fields
831 }
832 }
833 impl Default for CliUnstable {
834 fn default() -> Self {
835 let mut unstable = Self {
836 $(
837 $element: Default::default()
838 ),*
839 };
840
841 if !is_new_build_dir_layout_opt_out() {
843 unstable.build_dir_new_layout =
844 matches!(crate::version().release_channel.as_deref(), Some("nightly" | "dev"));
845 }
846
847 return unstable;
848 }
849 }
850
851 #[cfg(test)]
852 mod test {
853 #[test]
854 fn ensure_sorted() {
855 let location = std::panic::Location::caller();
857 println!(
858 "\nTo fix this test, sort the features inside the macro at {}:{}\n",
859 location.file(),
860 location.line()
861 );
862 let mut expected = vec![$(stringify!($element)),*];
863 expected[3..].sort();
865 let expected = format!("{:#?}", expected);
866 let actual = format!("{:#?}", vec![$(stringify!($element)),*]);
867 snapbox::assert_data_eq!(actual, expected);
868 }
869 }
870 }
871}
872
873unstable_cli_options!(
874 allow_features: Option<AllowFeatures> = ("Allow *only* the listed unstable features"),
876 embed_metadata: Option<bool> = ("Avoid embedding metadata in library artifacts"),
877 print_im_a_teapot: bool,
878
879 advanced_env: bool,
882 any_build_script_metadata: bool = ("Allow any build script to specify env vars via cargo::metadata=key=value"),
883 asymmetric_token: bool = ("Allows authenticating with asymmetric tokens"),
884 avoid_dev_deps: bool = ("Avoid installing dev-dependencies if possible"),
885 binary_dep_depinfo: bool = ("Track changes to dependency artifacts"),
886 bindeps: bool = ("Allow Cargo packages to depend on bin, cdylib, and staticlib crates, and use the artifacts built by those crates"),
887 build_analysis: bool = ("Record and persist build metrics across runs, with commands to query past builds."),
888 build_dir_new_layout: bool = ("Use the new build-dir filesystem layout"),
889 #[serde(deserialize_with = "deserialize_comma_separated_list")]
890 build_std: Option<Vec<String>> = ("Enable Cargo to compile the standard library itself as part of a crate graph compilation"),
891 #[serde(deserialize_with = "deserialize_comma_separated_list")]
892 build_std_features: Option<Vec<String>> = ("Configure features enabled for the standard library itself when building the standard library"),
893 cargo_lints: bool = ("Enable the `[lints.cargo]` table"),
894 checksum_freshness: bool = ("Use a checksum to determine if output is fresh rather than filesystem mtime"),
895 codegen_backend: bool = ("Enable the `codegen-backend` option in profiles in .cargo/config.toml file"),
896 direct_minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum (direct dependencies only)"),
897 dual_proc_macros: bool = ("Build proc-macros for both the host and the target"),
898 feature_unification: bool = ("Enable new feature unification modes in workspaces"),
899 features: Option<Vec<String>>,
900 fine_grain_locking: bool = ("Use fine grain locking instead of locking the entire build cache"),
901 fix_edition: Option<FixEdition> = ("Permanently unstable edition migration helper"),
902 gc: bool = ("Track cache usage and \"garbage collect\" unused files"),
903 #[serde(deserialize_with = "deserialize_git_features")]
904 git: Option<GitFeatures> = ("Enable support for shallow git fetch operations"),
905 #[serde(deserialize_with = "deserialize_gitoxide_features")]
906 gitoxide: Option<GitoxideFeatures> = ("Use gitoxide for the given git interactions, or all of them if no argument is given"),
907 hint_msrv: bool = ("Enable passing `package.rust-version` to rustc for lints"),
908 host_config: bool = ("Enable the `[host]` section in the .cargo/config.toml file"),
909 json_target_spec: bool = ("Enable `.json` target spec files"),
910 min_publish_age: bool = ("Enable the `min-publish-age` configuration for dependency version age filtering"),
911 minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum"),
912 msrv_policy: bool = ("Enable rust-version aware policy within cargo"),
913 mtime_on_use: bool = ("Configure Cargo to update the mtime of used files"),
914 next_lockfile_bump: bool,
915 no_index_update: bool = ("Do not update the registry index even if the cache is outdated"),
916 panic_abort_tests: bool = ("Enable support to run tests with -Cpanic=abort"),
917 panic_immediate_abort: bool = ("Enable setting `panic = \"immediate-abort\"` in profiles"),
918 profile_hint_mostly_unused: bool = ("Enable the `hint-mostly-unused` setting in profiles to mark a crate as mostly unused."),
919 profile_rustflags: bool = ("Enable the `rustflags` option in profiles in .cargo/config.toml file"),
920 public_dependency: bool = ("Respect a dependency's `public` field in Cargo.toml to control public/private dependencies"),
921 publish_timeout: bool = ("Enable the `publish.timeout` key in .cargo/config.toml file"),
922 root_dir: Option<PathBuf> = ("Set the root directory relative to which paths are printed (defaults to workspace root)"),
923 rustc_unicode: bool = ("Enable `rustc`'s unicode error format in Cargo's error messages"),
924 rustdoc_depinfo: bool = ("Use dep-info files in rustdoc rebuild detection"),
925 rustdoc_map: bool = ("Allow passing external documentation mappings to rustdoc"),
926 rustdoc_mergeable_info: bool = ("Use rustdoc mergeable cross-crate-info files"),
927 rustdoc_scrape_examples: bool = ("Allows Rustdoc to scrape code examples from reverse-dependencies"),
928 sbom: bool = ("Enable the `sbom` option in build config in .cargo/config.toml file"),
929 script: bool = ("Enable support for single-file, `.rs` packages"),
930 section_timings: bool = ("Enable support for extended compilation sections in --timings output"),
931 separate_nightlies: bool,
932 skip_rustdoc_fingerprint: bool,
933 target_applies_to_host: bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
934 trim_paths: bool = ("Enable the `trim-paths` option in profiles"),
935 unstable_options: bool = ("Allow the usage of unstable options"),
936);
937
938const STABILIZED_COMPILE_PROGRESS: &str = "The progress bar is now always \
939 enabled when used on an interactive console.\n\
940 See https://doc.rust-lang.org/cargo/reference/config.html#termprogresswhen \
941 for information on controlling the progress bar.";
942
943const STABILIZED_OFFLINE: &str = "Offline mode is now available via the \
944 --offline CLI option";
945
946const STABILIZED_CACHE_MESSAGES: &str = "Message caching is now always enabled.";
947
948const STABILIZED_INSTALL_UPGRADE: &str = "Packages are now always upgraded if \
949 they appear out of date.\n\
950 See https://doc.rust-lang.org/cargo/commands/cargo-install.html for more \
951 information on how upgrading works.";
952
953const STABILIZED_CONFIG_PROFILE: &str = "See \
954 https://doc.rust-lang.org/cargo/reference/config.html#profile for more \
955 information about specifying profiles in config.";
956
957const STABILIZED_CRATE_VERSIONS: &str = "The crate version is now \
958 automatically added to the documentation.";
959
960const STABILIZED_PACKAGE_FEATURES: &str = "Enhanced feature flag behavior is now \
961 available in virtual workspaces, and `member/feature-name` syntax is also \
962 always available. Other extensions require setting `resolver = \"2\"` in \
963 Cargo.toml.\n\
964 See https://doc.rust-lang.org/nightly/cargo/reference/features.html#resolver-version-2-command-line-flags \
965 for more information.";
966
967const STABILIZED_FEATURES: &str = "The new feature resolver is now available \
968 by specifying `resolver = \"2\"` in Cargo.toml.\n\
969 See https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 \
970 for more information.";
971
972const STABILIZED_EXTRA_LINK_ARG: &str = "Additional linker arguments are now \
973 supported without passing this flag.";
974
975const STABILIZED_CONFIGURABLE_ENV: &str = "The [env] section is now always enabled.";
976
977const STABILIZED_PATCH_IN_CONFIG: &str = "The patch-in-config feature is now always enabled.";
978
979const STABILIZED_NAMED_PROFILES: &str = "The named-profiles feature is now always enabled.\n\
980 See https://doc.rust-lang.org/nightly/cargo/reference/profiles.html#custom-profiles \
981 for more information";
982
983const STABILIZED_DOCTEST_IN_WORKSPACE: &str =
984 "The doctest-in-workspace feature is now always enabled.";
985
986const STABILIZED_FUTURE_INCOMPAT_REPORT: &str =
987 "The future-incompat-report feature is now always enabled.";
988
989const STABILIZED_WEAK_DEP_FEATURES: &str = "Weak dependency features are now always available.";
990
991const STABILISED_NAMESPACED_FEATURES: &str = "Namespaced features are now always available.";
992
993const STABILIZED_TIMINGS: &str = "The -Ztimings option has been stabilized as --timings.";
994
995const STABILISED_MULTITARGET: &str = "Multiple `--target` options are now always available.";
996
997const STABILIZED_TERMINAL_WIDTH: &str =
998 "The -Zterminal-width option is now always enabled for terminal output.";
999
1000const STABILISED_SPARSE_REGISTRY: &str = "The sparse protocol is now the default for crates.io";
1001
1002const STABILIZED_CREDENTIAL_PROCESS: &str =
1003 "Authentication with a credential provider is always available.";
1004
1005const STABILIZED_REGISTRY_AUTH: &str =
1006 "Authenticated registries are available if a credential provider is configured.";
1007
1008const STABILIZED_LINTS: &str = "The `[lints]` table is now always available.";
1009
1010const STABILIZED_CHECK_CFG: &str =
1011 "Compile-time checking of conditional (a.k.a. `-Zcheck-cfg`) is now always enabled.";
1012
1013const STABILIZED_DOCTEST_XCOMPILE: &str = "Doctest cross-compiling is now always enabled.";
1014
1015const STABILIZED_PACKAGE_WORKSPACE: &str =
1016 "Workspace packaging and publishing (a.k.a. `-Zpackage-workspace`) is now always enabled.";
1017
1018const STABILIZED_BUILD_DIR: &str = "build.build-dir is now always enabled.";
1019
1020const STABILIZED_CONFIG_INCLUDE: &str = "The `include` config key is now always available";
1021
1022const STABILIZED_LOCKFILE_PATH: &str = "The `lockfile-path` config key is now always available";
1023
1024const STABILIZED_WARNINGS: &str = "The `build.warnings` config key is now always available";
1025
1026fn deserialize_comma_separated_list<'de, D>(
1027 deserializer: D,
1028) -> Result<Option<Vec<String>>, D::Error>
1029where
1030 D: serde::Deserializer<'de>,
1031{
1032 let Some(list) = <Option<Vec<String>>>::deserialize(deserializer)? else {
1033 return Ok(None);
1034 };
1035 let v = list
1036 .iter()
1037 .flat_map(|s| s.split(','))
1038 .filter(|s| !s.is_empty())
1039 .map(String::from)
1040 .collect();
1041 Ok(Some(v))
1042}
1043
1044#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
1045#[serde(default)]
1046pub struct GitFeatures {
1047 pub shallow_index: bool,
1049 pub shallow_deps: bool,
1051}
1052
1053impl GitFeatures {
1054 pub fn all() -> Self {
1055 GitFeatures {
1056 shallow_index: true,
1057 shallow_deps: true,
1058 }
1059 }
1060
1061 fn expecting() -> String {
1062 let fields = ["`shallow-index`", "`shallow-deps`"];
1063 format!(
1064 "unstable 'git' only takes {} as valid inputs",
1065 fields.join(" and ")
1066 )
1067 }
1068}
1069
1070fn deserialize_git_features<'de, D>(deserializer: D) -> Result<Option<GitFeatures>, D::Error>
1071where
1072 D: serde::de::Deserializer<'de>,
1073{
1074 struct GitFeaturesVisitor;
1075
1076 impl<'de> serde::de::Visitor<'de> for GitFeaturesVisitor {
1077 type Value = Option<GitFeatures>;
1078
1079 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1080 formatter.write_str(&GitFeatures::expecting())
1081 }
1082
1083 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1084 where
1085 E: serde::de::Error,
1086 {
1087 if v {
1088 Ok(Some(GitFeatures::all()))
1089 } else {
1090 Ok(None)
1091 }
1092 }
1093
1094 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1095 where
1096 E: serde::de::Error,
1097 {
1098 Ok(parse_git(s.split(",")).map_err(serde::de::Error::custom)?)
1099 }
1100
1101 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1102 where
1103 D: serde::de::Deserializer<'de>,
1104 {
1105 let git = GitFeatures::deserialize(deserializer)?;
1106 Ok(Some(git))
1107 }
1108
1109 fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1110 where
1111 V: serde::de::MapAccess<'de>,
1112 {
1113 let mvd = serde::de::value::MapAccessDeserializer::new(map);
1114 Ok(Some(GitFeatures::deserialize(mvd)?))
1115 }
1116 }
1117
1118 deserializer.deserialize_any(GitFeaturesVisitor)
1119}
1120
1121fn parse_git(it: impl Iterator<Item = impl AsRef<str>>) -> CargoResult<Option<GitFeatures>> {
1122 let mut out = GitFeatures::default();
1123 let GitFeatures {
1124 shallow_index,
1125 shallow_deps,
1126 } = &mut out;
1127
1128 for e in it {
1129 match e.as_ref() {
1130 "shallow-index" => *shallow_index = true,
1131 "shallow-deps" => *shallow_deps = true,
1132 _ => {
1133 bail!(GitFeatures::expecting())
1134 }
1135 }
1136 }
1137 Ok(Some(out))
1138}
1139
1140#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
1141#[serde(default)]
1142pub struct GitoxideFeatures {
1143 pub fetch: bool,
1145 pub checkout: bool,
1148 pub internal_use_git2: bool,
1152}
1153
1154impl GitoxideFeatures {
1155 pub fn all() -> Self {
1156 GitoxideFeatures {
1157 fetch: true,
1158 checkout: true,
1159 internal_use_git2: false,
1160 }
1161 }
1162
1163 fn safe() -> Self {
1166 GitoxideFeatures {
1167 fetch: true,
1168 checkout: true,
1169 internal_use_git2: false,
1170 }
1171 }
1172
1173 fn expecting() -> String {
1174 let fields = ["`fetch`", "`checkout`", "`internal-use-git2`"];
1175 format!(
1176 "unstable 'gitoxide' only takes {} as valid inputs, for shallow fetches see `-Zgit=shallow-index,shallow-deps`",
1177 fields.join(" and ")
1178 )
1179 }
1180}
1181
1182fn deserialize_gitoxide_features<'de, D>(
1183 deserializer: D,
1184) -> Result<Option<GitoxideFeatures>, D::Error>
1185where
1186 D: serde::de::Deserializer<'de>,
1187{
1188 struct GitoxideFeaturesVisitor;
1189
1190 impl<'de> serde::de::Visitor<'de> for GitoxideFeaturesVisitor {
1191 type Value = Option<GitoxideFeatures>;
1192
1193 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1194 formatter.write_str(&GitoxideFeatures::expecting())
1195 }
1196
1197 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1198 where
1199 E: serde::de::Error,
1200 {
1201 Ok(parse_gitoxide(s.split(",")).map_err(serde::de::Error::custom)?)
1202 }
1203
1204 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1205 where
1206 E: serde::de::Error,
1207 {
1208 if v {
1209 Ok(Some(GitoxideFeatures::all()))
1210 } else {
1211 Ok(None)
1212 }
1213 }
1214
1215 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1216 where
1217 D: serde::de::Deserializer<'de>,
1218 {
1219 let gitoxide = GitoxideFeatures::deserialize(deserializer)?;
1220 Ok(Some(gitoxide))
1221 }
1222
1223 fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1224 where
1225 V: serde::de::MapAccess<'de>,
1226 {
1227 let mvd = serde::de::value::MapAccessDeserializer::new(map);
1228 Ok(Some(GitoxideFeatures::deserialize(mvd)?))
1229 }
1230 }
1231
1232 deserializer.deserialize_any(GitoxideFeaturesVisitor)
1233}
1234
1235fn parse_gitoxide(
1236 it: impl Iterator<Item = impl AsRef<str>>,
1237) -> CargoResult<Option<GitoxideFeatures>> {
1238 let mut out = GitoxideFeatures::default();
1239 let GitoxideFeatures {
1240 fetch,
1241 checkout,
1242 internal_use_git2,
1243 } = &mut out;
1244
1245 for e in it {
1246 match e.as_ref() {
1247 "fetch" => *fetch = true,
1248 "checkout" => *checkout = true,
1249 "internal-use-git2" => *internal_use_git2 = true,
1250 _ => {
1251 bail!(GitoxideFeatures::expecting())
1252 }
1253 }
1254 }
1255 Ok(Some(out))
1256}
1257
1258impl CliUnstable {
1259 pub fn parse(
1262 &mut self,
1263 flags: &[String],
1264 nightly_features_allowed: bool,
1265 ) -> CargoResult<Vec<String>> {
1266 if !flags.is_empty() && !nightly_features_allowed {
1267 bail!(
1268 "the `-Z` flag is only accepted on the nightly channel of Cargo, \
1269 but this is the `{}` channel\n\
1270 {}",
1271 channel(),
1272 SEE_CHANNELS
1273 );
1274 }
1275 let mut warnings = Vec::new();
1276 for flag in flags {
1279 if flag.starts_with("allow-features=") {
1280 self.add(flag, &mut warnings)?;
1281 }
1282 }
1283 for flag in flags {
1284 self.add(flag, &mut warnings)?;
1285 }
1286
1287 if self.gitoxide.is_none() && cargo_use_gitoxide_instead_of_git2() {
1288 self.gitoxide = GitoxideFeatures::safe().into();
1289 }
1290
1291 self.implicitly_enable_features_if_needed();
1292
1293 Ok(warnings)
1294 }
1295
1296 fn add(&mut self, flag: &str, warnings: &mut Vec<String>) -> CargoResult<()> {
1297 let mut parts = flag.splitn(2, '=');
1298 let k = parts.next().unwrap();
1299 let v = parts.next();
1300
1301 fn parse_bool(key: &str, value: Option<&str>) -> CargoResult<bool> {
1302 match value {
1303 None | Some("yes") => Ok(true),
1304 Some("no") => Ok(false),
1305 Some(s) => bail!("flag -Z{} expected `no` or `yes`, found: `{}`", key, s),
1306 }
1307 }
1308
1309 fn parse_option_bool(key: &str, value: Option<&str>) -> CargoResult<Option<bool>> {
1310 match value {
1311 None => Ok(None),
1312 Some("yes") => Ok(Some(true)),
1313 Some("no") => Ok(Some(false)),
1314 Some(s) => bail!("flag -Z{key} expected `no` or `yes`, found: `{s}`"),
1315 }
1316 }
1317
1318 fn parse_list(value: Option<&str>) -> Vec<String> {
1320 match value {
1321 None => Vec::new(),
1322 Some("") => Vec::new(),
1323 Some(v) => v.split(',').map(|s| s.to_string()).collect(),
1324 }
1325 }
1326
1327 fn parse_empty(key: &str, value: Option<&str>) -> CargoResult<bool> {
1329 if let Some(v) = value {
1330 bail!("flag -Z{} does not take a value, found: `{}`", key, v);
1331 }
1332 Ok(true)
1333 }
1334
1335 let mut stabilized_warn = |key: &str, version: &str, message: &str| {
1336 warnings.push(format!(
1337 "flag `-Z {}` has been stabilized in the {} release, \
1338 and is no longer necessary\n{}",
1339 key,
1340 version,
1341 indented_lines(message)
1342 ));
1343 };
1344
1345 let stabilized_err = |key: &str, version: &str, message: &str| {
1347 Err(anyhow::format_err!(
1348 "flag `-Z {}` has been stabilized in the {} release\n{}",
1349 key,
1350 version,
1351 indented_lines(message)
1352 ))
1353 };
1354
1355 if let Some(allowed) = &self.allow_features {
1356 if k != "allow-features" && !allowed.contains(k) {
1357 bail!(
1358 "the feature `{}` is not in the list of allowed features: [{}]",
1359 k,
1360 itertools::join(allowed, ", ")
1361 );
1362 }
1363 }
1364
1365 match k {
1366 "allow-features" => self.allow_features = Some(parse_list(v).into_iter().collect()),
1369 "embed-metadata" => self.embed_metadata = parse_option_bool(k, v)?,
1370 "print-im-a-teapot" => self.print_im_a_teapot = parse_bool(k, v)?,
1371
1372 "compile-progress" => stabilized_warn(k, "1.30", STABILIZED_COMPILE_PROGRESS),
1375 "offline" => stabilized_err(k, "1.36", STABILIZED_OFFLINE)?,
1376 "cache-messages" => stabilized_warn(k, "1.40", STABILIZED_CACHE_MESSAGES),
1377 "install-upgrade" => stabilized_warn(k, "1.41", STABILIZED_INSTALL_UPGRADE),
1378 "config-profile" => stabilized_warn(k, "1.43", STABILIZED_CONFIG_PROFILE),
1379 "crate-versions" => stabilized_warn(k, "1.47", STABILIZED_CRATE_VERSIONS),
1380 "features" => {
1381 let feats = parse_list(v);
1389 let stab_is_not_empty = feats.iter().any(|feat| {
1390 matches!(
1391 feat.as_str(),
1392 "build_dep" | "host_dep" | "dev_dep" | "itarget" | "all"
1393 )
1394 });
1395 if stab_is_not_empty || feats.is_empty() {
1396 stabilized_warn(k, "1.51", STABILIZED_FEATURES);
1398 }
1399 self.features = Some(feats);
1400 }
1401 "package-features" => stabilized_warn(k, "1.51", STABILIZED_PACKAGE_FEATURES),
1402 "configurable-env" => stabilized_warn(k, "1.56", STABILIZED_CONFIGURABLE_ENV),
1403 "extra-link-arg" => stabilized_warn(k, "1.56", STABILIZED_EXTRA_LINK_ARG),
1404 "patch-in-config" => stabilized_warn(k, "1.56", STABILIZED_PATCH_IN_CONFIG),
1405 "named-profiles" => stabilized_warn(k, "1.57", STABILIZED_NAMED_PROFILES),
1406 "future-incompat-report" => {
1407 stabilized_warn(k, "1.59.0", STABILIZED_FUTURE_INCOMPAT_REPORT)
1408 }
1409 "namespaced-features" => stabilized_warn(k, "1.60", STABILISED_NAMESPACED_FEATURES),
1410 "timings" => stabilized_warn(k, "1.60", STABILIZED_TIMINGS),
1411 "weak-dep-features" => stabilized_warn(k, "1.60", STABILIZED_WEAK_DEP_FEATURES),
1412 "multitarget" => stabilized_warn(k, "1.64", STABILISED_MULTITARGET),
1413 "sparse-registry" => stabilized_warn(k, "1.68", STABILISED_SPARSE_REGISTRY),
1414 "terminal-width" => stabilized_warn(k, "1.68", STABILIZED_TERMINAL_WIDTH),
1415 "doctest-in-workspace" => stabilized_warn(k, "1.72", STABILIZED_DOCTEST_IN_WORKSPACE),
1416 "credential-process" => stabilized_warn(k, "1.74", STABILIZED_CREDENTIAL_PROCESS),
1417 "lints" => stabilized_warn(k, "1.74", STABILIZED_LINTS),
1418 "registry-auth" => stabilized_warn(k, "1.74", STABILIZED_REGISTRY_AUTH),
1419 "check-cfg" => stabilized_warn(k, "1.80", STABILIZED_CHECK_CFG),
1420 "doctest-xcompile" => stabilized_warn(k, "1.89", STABILIZED_DOCTEST_XCOMPILE),
1421 "package-workspace" => stabilized_warn(k, "1.89", STABILIZED_PACKAGE_WORKSPACE),
1422 "build-dir" => stabilized_warn(k, "1.91", STABILIZED_BUILD_DIR),
1423 "config-include" => stabilized_warn(k, "1.93", STABILIZED_CONFIG_INCLUDE),
1424 "lockfile-path" => stabilized_warn(k, "1.97", STABILIZED_LOCKFILE_PATH),
1425 "warnings" => stabilized_warn(k, "1.97", STABILIZED_WARNINGS),
1426
1427 "advanced-env" => self.advanced_env = parse_empty(k, v)?,
1430 "any-build-script-metadata" => self.any_build_script_metadata = parse_empty(k, v)?,
1431 "asymmetric-token" => self.asymmetric_token = parse_empty(k, v)?,
1432 "avoid-dev-deps" => self.avoid_dev_deps = parse_empty(k, v)?,
1433 "binary-dep-depinfo" => self.binary_dep_depinfo = parse_empty(k, v)?,
1434 "bindeps" => self.bindeps = parse_empty(k, v)?,
1435 "build-analysis" => self.build_analysis = parse_empty(k, v)?,
1436 "build-dir-new-layout" => self.build_dir_new_layout = parse_empty(k, v)?,
1437 "build-std" => self.build_std = Some(parse_list(v)),
1438 "build-std-features" => self.build_std_features = Some(parse_list(v)),
1439 "cargo-lints" => self.cargo_lints = parse_empty(k, v)?,
1440 "codegen-backend" => self.codegen_backend = parse_empty(k, v)?,
1441 "direct-minimal-versions" => self.direct_minimal_versions = parse_empty(k, v)?,
1442 "dual-proc-macros" => self.dual_proc_macros = parse_empty(k, v)?,
1443 "feature-unification" => self.feature_unification = parse_empty(k, v)?,
1444 "fine-grain-locking" => self.fine_grain_locking = parse_empty(k, v)?,
1445 "fix-edition" => {
1446 let fe = v
1447 .ok_or_else(|| anyhow::anyhow!("-Zfix-edition expected a value"))?
1448 .parse()?;
1449 self.fix_edition = Some(fe);
1450 }
1451 "gc" => self.gc = parse_empty(k, v)?,
1452 "git" => {
1453 self.git =
1454 v.map_or_else(|| Ok(Some(GitFeatures::all())), |v| parse_git(v.split(',')))?
1455 }
1456 "gitoxide" => {
1457 self.gitoxide = v.map_or_else(
1458 || Ok(Some(GitoxideFeatures::all())),
1459 |v| parse_gitoxide(v.split(',')),
1460 )?
1461 }
1462 "host-config" => self.host_config = parse_empty(k, v)?,
1463 "json-target-spec" => self.json_target_spec = parse_empty(k, v)?,
1464 "min-publish-age" => self.min_publish_age = parse_empty(k, v)?,
1465 "hint-msrv" => self.hint_msrv = parse_empty(k, v)?,
1466 "next-lockfile-bump" => self.next_lockfile_bump = parse_empty(k, v)?,
1467 "minimal-versions" => self.minimal_versions = parse_empty(k, v)?,
1468 "msrv-policy" => self.msrv_policy = parse_empty(k, v)?,
1469 "mtime-on-use" => self.mtime_on_use = parse_empty(k, v)?,
1471 "no-index-update" => self.no_index_update = parse_empty(k, v)?,
1472 "panic-abort-tests" => self.panic_abort_tests = parse_empty(k, v)?,
1473 "public-dependency" => self.public_dependency = parse_empty(k, v)?,
1474 "profile-hint-mostly-unused" => self.profile_hint_mostly_unused = parse_empty(k, v)?,
1475 "profile-rustflags" => self.profile_rustflags = parse_empty(k, v)?,
1476 "trim-paths" => self.trim_paths = parse_empty(k, v)?,
1477 "publish-timeout" => self.publish_timeout = parse_empty(k, v)?,
1478 "root-dir" => self.root_dir = v.map(|v| v.into()),
1479 "rustc-unicode" => self.rustc_unicode = parse_empty(k, v)?,
1480 "rustdoc-depinfo" => self.rustdoc_depinfo = parse_empty(k, v)?,
1481 "rustdoc-map" => self.rustdoc_map = parse_empty(k, v)?,
1482 "rustdoc-mergeable-info" => self.rustdoc_mergeable_info = parse_empty(k, v)?,
1483 "rustdoc-scrape-examples" => self.rustdoc_scrape_examples = parse_empty(k, v)?,
1484 "sbom" => self.sbom = parse_empty(k, v)?,
1485 "section-timings" => self.section_timings = parse_empty(k, v)?,
1486 "separate-nightlies" => self.separate_nightlies = parse_empty(k, v)?,
1487 "checksum-freshness" => self.checksum_freshness = parse_empty(k, v)?,
1488 "skip-rustdoc-fingerprint" => self.skip_rustdoc_fingerprint = parse_empty(k, v)?,
1489 "script" => self.script = parse_empty(k, v)?,
1490 "target-applies-to-host" => self.target_applies_to_host = parse_empty(k, v)?,
1491 "panic-immediate-abort" => self.panic_immediate_abort = parse_empty(k, v)?,
1492 "unstable-options" => self.unstable_options = parse_empty(k, v)?,
1493 _ => bail!(
1494 "\
1495 unknown `-Z` flag specified: {k}\n\n\
1496 For available unstable features, see \
1497 https://doc.rust-lang.org/nightly/cargo/reference/unstable.html\n\
1498 If you intended to use an unstable rustc feature, try setting `RUSTFLAGS=\"-Z{k}\"`"
1499 ),
1500 }
1501
1502 Ok(())
1503 }
1504
1505 pub fn fail_if_stable_opt(&self, flag: &str, issue: u32) -> CargoResult<()> {
1508 self.fail_if_stable_opt_custom_z(flag, issue, "unstable-options", self.unstable_options)
1509 }
1510
1511 pub fn fail_if_stable_opt_custom_z(
1512 &self,
1513 flag: &str,
1514 issue: u32,
1515 z_name: &str,
1516 enabled: bool,
1517 ) -> CargoResult<()> {
1518 if !enabled {
1519 let see = format!(
1520 "See https://github.com/rust-lang/cargo/issues/{issue} for more \
1521 information about the `{flag}` flag."
1522 );
1523 let channel = channel();
1525 if channel == "nightly" || channel == "dev" {
1526 bail!(
1527 "the `{flag}` flag is unstable, pass `-Z {z_name}` to enable it\n\
1528 {see}"
1529 );
1530 } else {
1531 bail!(
1532 "the `{flag}` flag is unstable, and only available on the nightly channel \
1533 of Cargo, but this is the `{channel}` channel\n\
1534 {SEE_CHANNELS}\n\
1535 {see}"
1536 );
1537 }
1538 }
1539 Ok(())
1540 }
1541
1542 pub fn fail_if_stable_command(
1545 &self,
1546 gctx: &GlobalContext,
1547 command: &str,
1548 issue: u32,
1549 z_name: &str,
1550 enabled: bool,
1551 ) -> CargoResult<()> {
1552 if enabled {
1553 return Ok(());
1554 }
1555 let see = format!(
1556 "See https://github.com/rust-lang/cargo/issues/{} for more \
1557 information about the `cargo {}` command.",
1558 issue, command
1559 );
1560 if gctx.nightly_features_allowed {
1561 bail!(
1562 "the `cargo {command}` command is unstable, pass `-Z {z_name}` \
1563 to enable it\n\
1564 {see}",
1565 );
1566 } else {
1567 bail!(
1568 "the `cargo {}` command is unstable, and only available on the \
1569 nightly channel of Cargo, but this is the `{}` channel\n\
1570 {}\n\
1571 {}",
1572 command,
1573 channel(),
1574 SEE_CHANNELS,
1575 see
1576 );
1577 }
1578 }
1579
1580 fn implicitly_enable_features_if_needed(&mut self) {
1581 if self.fine_grain_locking && !self.build_dir_new_layout {
1582 debug!("-Zbuild-dir-new-layout implicitly enabled by -Zfine-grain-locking");
1583 self.build_dir_new_layout = true;
1584 }
1585 }
1586}
1587
1588pub fn channel() -> String {
1590 #[expect(
1591 clippy::disallowed_methods,
1592 reason = "testing only, no reason for config support"
1593 )]
1594 if let Ok(override_channel) = env::var("__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS") {
1595 return override_channel;
1596 }
1597 #[expect(
1598 clippy::disallowed_methods,
1599 reason = "consistency with rustc, not specified behavior"
1600 )]
1601 if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
1602 if staging == "1" {
1603 return "dev".to_string();
1604 }
1605 }
1606 crate::version()
1607 .release_channel
1608 .unwrap_or_else(|| String::from("dev"))
1609}
1610
1611#[expect(
1615 clippy::disallowed_methods,
1616 reason = "testing only, no reason for config support"
1617)]
1618fn cargo_use_gitoxide_instead_of_git2() -> bool {
1619 std::env::var_os("__CARGO_USE_GITOXIDE_INSTEAD_OF_GIT2").map_or(false, |value| value == "1")
1620}
1621
1622#[expect(
1623 clippy::disallowed_methods,
1624 reason = "Temporary opt out that is not part of the public interface"
1625)]
1626fn is_new_build_dir_layout_opt_out() -> bool {
1627 std::env::var("__CARGO_TEMPORARY_BUILD_DIR_NEW_LAYOUT_OPT_OUT").as_deref() == Ok("1")
1628}
1629
1630pub fn cargo_docs_link(path: &str) -> String {
1633 let url_channel = match channel().as_str() {
1634 "dev" | "nightly" => "nightly/",
1635 "beta" => "beta/",
1636 _ => "",
1637 };
1638 format!("https://doc.rust-lang.org/{url_channel}cargo/{path}")
1639}