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};
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
139pub type AllowFeatures = BTreeSet<String>;
141
142#[derive(
180 Default, Clone, Copy, Debug, Hash, PartialOrd, Ord, Eq, PartialEq, Serialize, Deserialize,
181)]
182pub enum Edition {
183 #[default]
185 Edition2015,
186 Edition2018,
188 Edition2021,
190 Edition2024,
192 EditionFuture,
194}
195
196impl Edition {
197 pub const LATEST_UNSTABLE: Option<Edition> = None;
204 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 pub const CLI_VALUES: [&'static str; 4] = ["2015", "2018", "2021", "2024"];
221
222 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 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 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 pub fn saturating_next(&self) -> Edition {
264 use Edition::*;
265 match self {
267 Edition2015 => Edition2018,
268 Edition2018 => Edition2021,
269 Edition2021 => Edition2024,
270 Edition2024 => Edition2024,
271 EditionFuture => EditionFuture,
272 }
273 }
274
275 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 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 cmd.arg(format!("--force-warn=rust-{e}-compatibility"));
300 }
301 }
302 }
303
304 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#[derive(Debug, Deserialize)]
366pub enum FixEdition {
367 Start(Edition),
374 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
410macro_rules! features {
422 (
423 $(
424 $(#[$attr:meta])*
425 ($stab:ident, $feature:ident, $version:expr, $docs:expr),
426 )*
427 ) => (
428 #[derive(Default, Clone, Debug)]
433 pub struct Features {
434 $($feature: bool,)*
435 activated: Vec<String>,
437 nightly_features_allowed: bool,
439 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 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
501features! {
503 (stable, test_dummy_stable, "1.0", ""),
506
507 (unstable, test_dummy_unstable, "", "reference/unstable.html"),
510
511 (stable, alternative_registries, "1.34", "reference/registries.html"),
513
514 (stable, edition, "1.31", "reference/manifest.html#the-edition-field"),
516
517 (stable, rename_dependency, "1.31", "reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml"),
519
520 (removed, publish_lockfile, "1.37", "reference/unstable.html#publish-lockfile"),
522
523 (stable, profile_overrides, "1.41", "reference/profiles.html#overrides"),
525
526 (stable, default_run, "1.37", "reference/manifest.html#the-default-run-field"),
528
529 (unstable, metabuild, "", "reference/unstable.html#metabuild"),
531
532 (unstable, public_dependency, "", "reference/unstable.html#public-dependency"),
534
535 (stable, named_profiles, "1.57", "reference/profiles.html#custom-profiles"),
537
538 (stable, resolver, "1.51", "reference/resolver.html#resolver-versions"),
540
541 (stable, strip, "1.58", "reference/profiles.html#strip-option"),
543
544 (stable, rust_version, "1.56", "reference/manifest.html#the-rust-version-field"),
546
547 (stable, edition2021, "1.56", "reference/manifest.html#the-edition-field"),
549
550 (unstable, per_package_target, "", "reference/unstable.html#per-package-target"),
552
553 (unstable, codegen_backend, "", "reference/unstable.html#codegen-backend"),
555
556 (unstable, different_binary_name, "", "reference/unstable.html#different-binary-name"),
558
559 (unstable, profile_rustflags, "", "reference/unstable.html#profile-rustflags-option"),
561
562 (stable, workspace_inheritance, "1.64", "reference/unstable.html#workspace-inheritance"),
564
565 (stable, edition2024, "1.85", "reference/manifest.html#the-edition-field"),
567
568 (unstable, trim_paths, "", "reference/unstable.html#profile-trim-paths-option"),
570
571 (unstable, open_namespaces, "", "reference/unstable.html#open-namespaces"),
573
574 (unstable, path_bases, "", "reference/unstable.html#path-bases"),
576
577 (unstable, unstable_editions, "", "reference/unstable.html#unstable-editions"),
579
580 (unstable, multiple_build_scripts, "", "reference/unstable.html#multiple-build-scripts"),
582}
583
584#[derive(Debug)]
586pub struct Feature {
587 name: &'static str,
589 stability: Status,
590 version: &'static str,
592 docs: &'static str,
594 get: fn(&Features) -> bool,
595}
596
597impl Features {
598 pub fn new(
600 features: &[String],
601 gctx: &GlobalContext,
602 warnings: &mut Vec<String>,
603 is_local: bool,
604 ) -> CargoResult<Features> {
605 let mut ret = Features::default();
606 ret.nightly_features_allowed = gctx.nightly_features_allowed;
607 ret.is_local = is_local;
608 for feature in features {
609 ret.add(feature, gctx, warnings)?;
610 ret.activated.push(feature.to_string());
611 }
612 Ok(ret)
613 }
614
615 fn add(
616 &mut self,
617 feature_name: &str,
618 gctx: &GlobalContext,
619 warnings: &mut Vec<String>,
620 ) -> CargoResult<()> {
621 let nightly_features_allowed = self.nightly_features_allowed;
622 let Some((slot, feature)) = self.status(feature_name) else {
623 let mut msg = format!("unknown Cargo.toml feature `{feature_name}`\n\n");
624 let mut append_see_docs = true;
625
626 if feature_name.contains('_') {
627 let _ = writeln!(msg, "Feature names must use '-' instead of '_'.");
628 append_see_docs = false;
629 } else {
630 let underscore_name = feature_name.replace('-', "_");
631 if CliUnstable::help()
632 .iter()
633 .any(|(option, _)| *option == underscore_name)
634 {
635 let _ = writeln!(
636 msg,
637 "This feature can be enabled via -Z{feature_name} or the `[unstable]` section in config.toml."
638 );
639 }
640 }
641
642 if append_see_docs {
643 let _ = writeln!(
644 msg,
645 "See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html for more information."
646 );
647 }
648 bail!(msg)
649 };
650
651 if *slot {
652 bail!(
653 "the cargo feature `{}` has already been activated",
654 feature_name
655 );
656 }
657
658 let see_docs = || {
659 format!(
660 "See {} for more information about using this feature.",
661 cargo_docs_link(feature.docs)
662 )
663 };
664
665 match feature.stability {
666 Status::Stable => {
667 let warning = format!(
668 "the cargo feature `{}` has been stabilized in the {} \
669 release and is no longer necessary to be listed in the \
670 manifest\n {}",
671 feature_name,
672 feature.version,
673 see_docs()
674 );
675 warnings.push(warning);
676 }
677 Status::Unstable if !nightly_features_allowed => bail!(
678 "the cargo feature `{}` requires a nightly version of \
679 Cargo, but this is the `{}` channel\n\
680 {}\n{}",
681 feature_name,
682 channel(),
683 SEE_CHANNELS,
684 see_docs()
685 ),
686 Status::Unstable => {
687 if let Some(allow) = &gctx.cli_unstable().allow_features {
688 if !allow.contains(feature_name) {
689 bail!(
690 "the feature `{}` is not in the list of allowed features: [{}]",
691 feature_name,
692 itertools::join(allow, ", "),
693 );
694 }
695 }
696 }
697 Status::Removed => {
698 let mut msg = format!(
699 "the cargo feature `{}` has been removed in the {} release\n\n",
700 feature_name, feature.version
701 );
702 if self.is_local {
703 let _ = writeln!(
704 msg,
705 "Remove the feature from Cargo.toml to remove this error."
706 );
707 } else {
708 let _ = writeln!(
709 msg,
710 "This package cannot be used with this version of Cargo, \
711 as the unstable feature `{}` is no longer supported.",
712 feature_name
713 );
714 }
715 let _ = writeln!(msg, "{}", see_docs());
716 bail!(msg);
717 }
718 }
719
720 *slot = true;
721
722 Ok(())
723 }
724
725 pub fn activated(&self) -> &[String] {
727 &self.activated
728 }
729
730 pub fn require(&self, feature: &Feature) -> CargoResult<()> {
732 if feature.is_enabled(self) {
733 return Ok(());
734 }
735 let feature_name = feature.name.replace("_", "-");
736 let mut msg = format!(
737 "feature `{}` is required\n\
738 \n\
739 The package requires the Cargo feature called `{}`, but \
740 that feature is not stabilized in this version of Cargo ({}).\n\
741 ",
742 feature_name,
743 feature_name,
744 crate::version(),
745 );
746
747 if self.nightly_features_allowed {
748 if self.is_local {
749 let _ = writeln!(
750 msg,
751 "Consider adding `cargo-features = [\"{}\"]` \
752 to the top of Cargo.toml (above the [package] table) \
753 to tell Cargo you are opting in to use this unstable feature.",
754 feature_name
755 );
756 } else {
757 let _ = writeln!(msg, "Consider trying a more recent nightly release.");
758 }
759 } else {
760 let _ = writeln!(
761 msg,
762 "Consider trying a newer version of Cargo \
763 (this may require the nightly release)."
764 );
765 }
766 let _ = writeln!(
767 msg,
768 "See https://doc.rust-lang.org/nightly/cargo/{} for more information \
769 about the status of this feature.",
770 feature.docs
771 );
772
773 bail!("{}", msg);
774 }
775
776 pub fn is_enabled(&self, feature: &Feature) -> bool {
778 feature.is_enabled(self)
779 }
780}
781
782macro_rules! unstable_cli_options {
786 (
787 $(
788 $(#[$meta:meta])?
789 $element: ident: $ty: ty$( = ($help:literal))?,
790 )*
791 ) => {
792 #[derive(Default, Debug, Deserialize)]
798 #[serde(default, rename_all = "kebab-case")]
799 pub struct CliUnstable {
800 $(
801 $(#[doc = $help])?
802 $(#[$meta])?
803 pub $element: $ty
804 ),*
805 }
806 impl CliUnstable {
807 pub fn help() -> Vec<(&'static str, Option<&'static str>)> {
809 let fields = vec![$((stringify!($element), None$(.or(Some($help)))?)),*];
810 fields
811 }
812 }
813
814 #[cfg(test)]
815 mod test {
816 #[test]
817 fn ensure_sorted() {
818 let location = std::panic::Location::caller();
820 println!(
821 "\nTo fix this test, sort the features inside the macro at {}:{}\n",
822 location.file(),
823 location.line()
824 );
825 let mut expected = vec![$(stringify!($element)),*];
826 expected[2..].sort();
827 let expected = format!("{:#?}", expected);
828 let actual = format!("{:#?}", vec![$(stringify!($element)),*]);
829 snapbox::assert_data_eq!(actual, expected);
830 }
831 }
832 }
833}
834
835unstable_cli_options!(
836 allow_features: Option<AllowFeatures> = ("Allow *only* the listed unstable features"),
838 print_im_a_teapot: bool,
839
840 advanced_env: bool,
843 asymmetric_token: bool = ("Allows authenticating with asymmetric tokens"),
844 avoid_dev_deps: bool = ("Avoid installing dev-dependencies if possible"),
845 binary_dep_depinfo: bool = ("Track changes to dependency artifacts"),
846 bindeps: bool = ("Allow Cargo packages to depend on bin, cdylib, and staticlib crates, and use the artifacts built by those crates"),
847 build_analysis: bool = ("Record and persist build metrics across runs, with commands to query past builds."),
848 build_dir_new_layout: bool = ("Use the new build-dir filesystem layout"),
849 #[serde(deserialize_with = "deserialize_comma_separated_list")]
850 build_std: Option<Vec<String>> = ("Enable Cargo to compile the standard library itself as part of a crate graph compilation"),
851 #[serde(deserialize_with = "deserialize_comma_separated_list")]
852 build_std_features: Option<Vec<String>> = ("Configure features enabled for the standard library itself when building the standard library"),
853 cargo_lints: bool = ("Enable the `[lints.cargo]` table"),
854 checksum_freshness: bool = ("Use a checksum to determine if output is fresh rather than filesystem mtime"),
855 codegen_backend: bool = ("Enable the `codegen-backend` option in profiles in .cargo/config.toml file"),
856 config_include: bool = ("Enable the `include` key in config files"),
857 direct_minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum (direct dependencies only)"),
858 dual_proc_macros: bool = ("Build proc-macros for both the host and the target"),
859 feature_unification: bool = ("Enable new feature unification modes in workspaces"),
860 features: Option<Vec<String>>,
861 fix_edition: Option<FixEdition> = ("Permanently unstable edition migration helper"),
862 gc: bool = ("Track cache usage and \"garbage collect\" unused files"),
863 #[serde(deserialize_with = "deserialize_git_features")]
864 git: Option<GitFeatures> = ("Enable support for shallow git fetch operations"),
865 #[serde(deserialize_with = "deserialize_gitoxide_features")]
866 gitoxide: Option<GitoxideFeatures> = ("Use gitoxide for the given git interactions, or all of them if no argument is given"),
867 host_config: bool = ("Enable the `[host]` section in the .cargo/config.toml file"),
868 minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum"),
869 msrv_policy: bool = ("Enable rust-version aware policy within cargo"),
870 mtime_on_use: bool = ("Configure Cargo to update the mtime of used files"),
871 next_lockfile_bump: bool,
872 no_embed_metadata: bool = ("Avoid embedding metadata in library artifacts"),
873 no_index_update: bool = ("Do not update the registry index even if the cache is outdated"),
874 panic_abort_tests: bool = ("Enable support to run tests with -Cpanic=abort"),
875 profile_hint_mostly_unused: bool = ("Enable the `hint-mostly-unused` setting in profiles to mark a crate as mostly unused."),
876 profile_rustflags: bool = ("Enable the `rustflags` option in profiles in .cargo/config.toml file"),
877 public_dependency: bool = ("Respect a dependency's `public` field in Cargo.toml to control public/private dependencies"),
878 publish_timeout: bool = ("Enable the `publish.timeout` key in .cargo/config.toml file"),
879 root_dir: Option<PathBuf> = ("Set the root directory relative to which paths are printed (defaults to workspace root)"),
880 rustdoc_depinfo: bool = ("Use dep-info files in rustdoc rebuild detection"),
881 rustdoc_map: bool = ("Allow passing external documentation mappings to rustdoc"),
882 rustdoc_scrape_examples: bool = ("Allows Rustdoc to scrape code examples from reverse-dependencies"),
883 sbom: bool = ("Enable the `sbom` option in build config in .cargo/config.toml file"),
884 script: bool = ("Enable support for single-file, `.rs` packages"),
885 section_timings: bool = ("Enable support for extended compilation sections in --timings output"),
886 separate_nightlies: bool,
887 skip_rustdoc_fingerprint: bool,
888 target_applies_to_host: bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
889 trim_paths: bool = ("Enable the `trim-paths` option in profiles"),
890 unstable_options: bool = ("Allow the usage of unstable options"),
891 warnings: bool = ("Allow use of the build.warnings config key"),
892);
893
894const STABILIZED_COMPILE_PROGRESS: &str = "The progress bar is now always \
895 enabled when used on an interactive console.\n\
896 See https://doc.rust-lang.org/cargo/reference/config.html#termprogresswhen \
897 for information on controlling the progress bar.";
898
899const STABILIZED_OFFLINE: &str = "Offline mode is now available via the \
900 --offline CLI option";
901
902const STABILIZED_CACHE_MESSAGES: &str = "Message caching is now always enabled.";
903
904const STABILIZED_INSTALL_UPGRADE: &str = "Packages are now always upgraded if \
905 they appear out of date.\n\
906 See https://doc.rust-lang.org/cargo/commands/cargo-install.html for more \
907 information on how upgrading works.";
908
909const STABILIZED_CONFIG_PROFILE: &str = "See \
910 https://doc.rust-lang.org/cargo/reference/config.html#profile for more \
911 information about specifying profiles in config.";
912
913const STABILIZED_CRATE_VERSIONS: &str = "The crate version is now \
914 automatically added to the documentation.";
915
916const STABILIZED_PACKAGE_FEATURES: &str = "Enhanced feature flag behavior is now \
917 available in virtual workspaces, and `member/feature-name` syntax is also \
918 always available. Other extensions require setting `resolver = \"2\"` in \
919 Cargo.toml.\n\
920 See https://doc.rust-lang.org/nightly/cargo/reference/features.html#resolver-version-2-command-line-flags \
921 for more information.";
922
923const STABILIZED_FEATURES: &str = "The new feature resolver is now available \
924 by specifying `resolver = \"2\"` in Cargo.toml.\n\
925 See https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 \
926 for more information.";
927
928const STABILIZED_EXTRA_LINK_ARG: &str = "Additional linker arguments are now \
929 supported without passing this flag.";
930
931const STABILIZED_CONFIGURABLE_ENV: &str = "The [env] section is now always enabled.";
932
933const STABILIZED_PATCH_IN_CONFIG: &str = "The patch-in-config feature is now always enabled.";
934
935const STABILIZED_NAMED_PROFILES: &str = "The named-profiles feature is now always enabled.\n\
936 See https://doc.rust-lang.org/nightly/cargo/reference/profiles.html#custom-profiles \
937 for more information";
938
939const STABILIZED_DOCTEST_IN_WORKSPACE: &str =
940 "The doctest-in-workspace feature is now always enabled.";
941
942const STABILIZED_FUTURE_INCOMPAT_REPORT: &str =
943 "The future-incompat-report feature is now always enabled.";
944
945const STABILIZED_WEAK_DEP_FEATURES: &str = "Weak dependency features are now always available.";
946
947const STABILISED_NAMESPACED_FEATURES: &str = "Namespaced features are now always available.";
948
949const STABILIZED_TIMINGS: &str = "The -Ztimings option has been stabilized as --timings.";
950
951const STABILISED_MULTITARGET: &str = "Multiple `--target` options are now always available.";
952
953const STABILIZED_TERMINAL_WIDTH: &str =
954 "The -Zterminal-width option is now always enabled for terminal output.";
955
956const STABILISED_SPARSE_REGISTRY: &str = "The sparse protocol is now the default for crates.io";
957
958const STABILIZED_CREDENTIAL_PROCESS: &str =
959 "Authentication with a credential provider is always available.";
960
961const STABILIZED_REGISTRY_AUTH: &str =
962 "Authenticated registries are available if a credential provider is configured.";
963
964const STABILIZED_LINTS: &str = "The `[lints]` table is now always available.";
965
966const STABILIZED_CHECK_CFG: &str =
967 "Compile-time checking of conditional (a.k.a. `-Zcheck-cfg`) is now always enabled.";
968
969const STABILIZED_DOCTEST_XCOMPILE: &str = "Doctest cross-compiling is now always enabled.";
970
971const STABILIZED_PACKAGE_WORKSPACE: &str =
972 "Workspace packaging and publishing (a.k.a. `-Zpackage-workspace`) is now always enabled.";
973
974const STABILIZED_BUILD_DIR: &str = "build.build-dir is now always enabled.";
975
976fn deserialize_comma_separated_list<'de, D>(
977 deserializer: D,
978) -> Result<Option<Vec<String>>, D::Error>
979where
980 D: serde::Deserializer<'de>,
981{
982 let Some(list) = <Option<Vec<String>>>::deserialize(deserializer)? else {
983 return Ok(None);
984 };
985 let v = list
986 .iter()
987 .flat_map(|s| s.split(','))
988 .filter(|s| !s.is_empty())
989 .map(String::from)
990 .collect();
991 Ok(Some(v))
992}
993
994#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
995#[serde(default)]
996pub struct GitFeatures {
997 pub shallow_index: bool,
999 pub shallow_deps: bool,
1001}
1002
1003impl GitFeatures {
1004 pub fn all() -> Self {
1005 GitFeatures {
1006 shallow_index: true,
1007 shallow_deps: true,
1008 }
1009 }
1010
1011 fn expecting() -> String {
1012 let fields = ["`shallow-index`", "`shallow-deps`"];
1013 format!(
1014 "unstable 'git' only takes {} as valid inputs",
1015 fields.join(" and ")
1016 )
1017 }
1018}
1019
1020fn deserialize_git_features<'de, D>(deserializer: D) -> Result<Option<GitFeatures>, D::Error>
1021where
1022 D: serde::de::Deserializer<'de>,
1023{
1024 struct GitFeaturesVisitor;
1025
1026 impl<'de> serde::de::Visitor<'de> for GitFeaturesVisitor {
1027 type Value = Option<GitFeatures>;
1028
1029 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1030 formatter.write_str(&GitFeatures::expecting())
1031 }
1032
1033 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1034 where
1035 E: serde::de::Error,
1036 {
1037 if v {
1038 Ok(Some(GitFeatures::all()))
1039 } else {
1040 Ok(None)
1041 }
1042 }
1043
1044 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1045 where
1046 E: serde::de::Error,
1047 {
1048 Ok(parse_git(s.split(",")).map_err(serde::de::Error::custom)?)
1049 }
1050
1051 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1052 where
1053 D: serde::de::Deserializer<'de>,
1054 {
1055 let git = GitFeatures::deserialize(deserializer)?;
1056 Ok(Some(git))
1057 }
1058
1059 fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1060 where
1061 V: serde::de::MapAccess<'de>,
1062 {
1063 let mvd = serde::de::value::MapAccessDeserializer::new(map);
1064 Ok(Some(GitFeatures::deserialize(mvd)?))
1065 }
1066 }
1067
1068 deserializer.deserialize_any(GitFeaturesVisitor)
1069}
1070
1071fn parse_git(it: impl Iterator<Item = impl AsRef<str>>) -> CargoResult<Option<GitFeatures>> {
1072 let mut out = GitFeatures::default();
1073 let GitFeatures {
1074 shallow_index,
1075 shallow_deps,
1076 } = &mut out;
1077
1078 for e in it {
1079 match e.as_ref() {
1080 "shallow-index" => *shallow_index = true,
1081 "shallow-deps" => *shallow_deps = true,
1082 _ => {
1083 bail!(GitFeatures::expecting())
1084 }
1085 }
1086 }
1087 Ok(Some(out))
1088}
1089
1090#[derive(Debug, Copy, Clone, Default, Deserialize, Ord, PartialOrd, Eq, PartialEq)]
1091#[serde(default)]
1092pub struct GitoxideFeatures {
1093 pub fetch: bool,
1095 pub checkout: bool,
1098 pub internal_use_git2: bool,
1102}
1103
1104impl GitoxideFeatures {
1105 pub fn all() -> Self {
1106 GitoxideFeatures {
1107 fetch: true,
1108 checkout: true,
1109 internal_use_git2: false,
1110 }
1111 }
1112
1113 fn safe() -> Self {
1116 GitoxideFeatures {
1117 fetch: true,
1118 checkout: true,
1119 internal_use_git2: false,
1120 }
1121 }
1122
1123 fn expecting() -> String {
1124 let fields = ["`fetch`", "`checkout`", "`internal-use-git2`"];
1125 format!(
1126 "unstable 'gitoxide' only takes {} as valid inputs, for shallow fetches see `-Zgit=shallow-index,shallow-deps`",
1127 fields.join(" and ")
1128 )
1129 }
1130}
1131
1132fn deserialize_gitoxide_features<'de, D>(
1133 deserializer: D,
1134) -> Result<Option<GitoxideFeatures>, D::Error>
1135where
1136 D: serde::de::Deserializer<'de>,
1137{
1138 struct GitoxideFeaturesVisitor;
1139
1140 impl<'de> serde::de::Visitor<'de> for GitoxideFeaturesVisitor {
1141 type Value = Option<GitoxideFeatures>;
1142
1143 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1144 formatter.write_str(&GitoxideFeatures::expecting())
1145 }
1146
1147 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
1148 where
1149 E: serde::de::Error,
1150 {
1151 Ok(parse_gitoxide(s.split(",")).map_err(serde::de::Error::custom)?)
1152 }
1153
1154 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
1155 where
1156 E: serde::de::Error,
1157 {
1158 if v {
1159 Ok(Some(GitoxideFeatures::all()))
1160 } else {
1161 Ok(None)
1162 }
1163 }
1164
1165 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
1166 where
1167 D: serde::de::Deserializer<'de>,
1168 {
1169 let gitoxide = GitoxideFeatures::deserialize(deserializer)?;
1170 Ok(Some(gitoxide))
1171 }
1172
1173 fn visit_map<V>(self, map: V) -> Result<Self::Value, V::Error>
1174 where
1175 V: serde::de::MapAccess<'de>,
1176 {
1177 let mvd = serde::de::value::MapAccessDeserializer::new(map);
1178 Ok(Some(GitoxideFeatures::deserialize(mvd)?))
1179 }
1180 }
1181
1182 deserializer.deserialize_any(GitoxideFeaturesVisitor)
1183}
1184
1185fn parse_gitoxide(
1186 it: impl Iterator<Item = impl AsRef<str>>,
1187) -> CargoResult<Option<GitoxideFeatures>> {
1188 let mut out = GitoxideFeatures::default();
1189 let GitoxideFeatures {
1190 fetch,
1191 checkout,
1192 internal_use_git2,
1193 } = &mut out;
1194
1195 for e in it {
1196 match e.as_ref() {
1197 "fetch" => *fetch = true,
1198 "checkout" => *checkout = true,
1199 "internal-use-git2" => *internal_use_git2 = true,
1200 _ => {
1201 bail!(GitoxideFeatures::expecting())
1202 }
1203 }
1204 }
1205 Ok(Some(out))
1206}
1207
1208impl CliUnstable {
1209 pub fn parse(
1212 &mut self,
1213 flags: &[String],
1214 nightly_features_allowed: bool,
1215 ) -> CargoResult<Vec<String>> {
1216 if !flags.is_empty() && !nightly_features_allowed {
1217 bail!(
1218 "the `-Z` flag is only accepted on the nightly channel of Cargo, \
1219 but this is the `{}` channel\n\
1220 {}",
1221 channel(),
1222 SEE_CHANNELS
1223 );
1224 }
1225 let mut warnings = Vec::new();
1226 for flag in flags {
1229 if flag.starts_with("allow-features=") {
1230 self.add(flag, &mut warnings)?;
1231 }
1232 }
1233 for flag in flags {
1234 self.add(flag, &mut warnings)?;
1235 }
1236
1237 if self.gitoxide.is_none() && cargo_use_gitoxide_instead_of_git2() {
1238 self.gitoxide = GitoxideFeatures::safe().into();
1239 }
1240 Ok(warnings)
1241 }
1242
1243 fn add(&mut self, flag: &str, warnings: &mut Vec<String>) -> CargoResult<()> {
1244 let mut parts = flag.splitn(2, '=');
1245 let k = parts.next().unwrap();
1246 let v = parts.next();
1247
1248 fn parse_bool(key: &str, value: Option<&str>) -> CargoResult<bool> {
1249 match value {
1250 None | Some("yes") => Ok(true),
1251 Some("no") => Ok(false),
1252 Some(s) => bail!("flag -Z{} expected `no` or `yes`, found: `{}`", key, s),
1253 }
1254 }
1255
1256 fn parse_list(value: Option<&str>) -> Vec<String> {
1258 match value {
1259 None => Vec::new(),
1260 Some("") => Vec::new(),
1261 Some(v) => v.split(',').map(|s| s.to_string()).collect(),
1262 }
1263 }
1264
1265 fn parse_empty(key: &str, value: Option<&str>) -> CargoResult<bool> {
1267 if let Some(v) = value {
1268 bail!("flag -Z{} does not take a value, found: `{}`", key, v);
1269 }
1270 Ok(true)
1271 }
1272
1273 let mut stabilized_warn = |key: &str, version: &str, message: &str| {
1274 warnings.push(format!(
1275 "flag `-Z {}` has been stabilized in the {} release, \
1276 and is no longer necessary\n{}",
1277 key,
1278 version,
1279 indented_lines(message)
1280 ));
1281 };
1282
1283 let stabilized_err = |key: &str, version: &str, message: &str| {
1285 Err(anyhow::format_err!(
1286 "flag `-Z {}` has been stabilized in the {} release\n{}",
1287 key,
1288 version,
1289 indented_lines(message)
1290 ))
1291 };
1292
1293 if let Some(allowed) = &self.allow_features {
1294 if k != "allow-features" && !allowed.contains(k) {
1295 bail!(
1296 "the feature `{}` is not in the list of allowed features: [{}]",
1297 k,
1298 itertools::join(allowed, ", ")
1299 );
1300 }
1301 }
1302
1303 match k {
1304 "allow-features" => self.allow_features = Some(parse_list(v).into_iter().collect()),
1307 "print-im-a-teapot" => self.print_im_a_teapot = parse_bool(k, v)?,
1308
1309 "compile-progress" => stabilized_warn(k, "1.30", STABILIZED_COMPILE_PROGRESS),
1312 "offline" => stabilized_err(k, "1.36", STABILIZED_OFFLINE)?,
1313 "cache-messages" => stabilized_warn(k, "1.40", STABILIZED_CACHE_MESSAGES),
1314 "install-upgrade" => stabilized_warn(k, "1.41", STABILIZED_INSTALL_UPGRADE),
1315 "config-profile" => stabilized_warn(k, "1.43", STABILIZED_CONFIG_PROFILE),
1316 "crate-versions" => stabilized_warn(k, "1.47", STABILIZED_CRATE_VERSIONS),
1317 "features" => {
1318 let feats = parse_list(v);
1326 let stab_is_not_empty = feats.iter().any(|feat| {
1327 matches!(
1328 feat.as_str(),
1329 "build_dep" | "host_dep" | "dev_dep" | "itarget" | "all"
1330 )
1331 });
1332 if stab_is_not_empty || feats.is_empty() {
1333 stabilized_warn(k, "1.51", STABILIZED_FEATURES);
1335 }
1336 self.features = Some(feats);
1337 }
1338 "package-features" => stabilized_warn(k, "1.51", STABILIZED_PACKAGE_FEATURES),
1339 "configurable-env" => stabilized_warn(k, "1.56", STABILIZED_CONFIGURABLE_ENV),
1340 "extra-link-arg" => stabilized_warn(k, "1.56", STABILIZED_EXTRA_LINK_ARG),
1341 "patch-in-config" => stabilized_warn(k, "1.56", STABILIZED_PATCH_IN_CONFIG),
1342 "named-profiles" => stabilized_warn(k, "1.57", STABILIZED_NAMED_PROFILES),
1343 "future-incompat-report" => {
1344 stabilized_warn(k, "1.59.0", STABILIZED_FUTURE_INCOMPAT_REPORT)
1345 }
1346 "namespaced-features" => stabilized_warn(k, "1.60", STABILISED_NAMESPACED_FEATURES),
1347 "timings" => stabilized_warn(k, "1.60", STABILIZED_TIMINGS),
1348 "weak-dep-features" => stabilized_warn(k, "1.60", STABILIZED_WEAK_DEP_FEATURES),
1349 "multitarget" => stabilized_warn(k, "1.64", STABILISED_MULTITARGET),
1350 "sparse-registry" => stabilized_warn(k, "1.68", STABILISED_SPARSE_REGISTRY),
1351 "terminal-width" => stabilized_warn(k, "1.68", STABILIZED_TERMINAL_WIDTH),
1352 "doctest-in-workspace" => stabilized_warn(k, "1.72", STABILIZED_DOCTEST_IN_WORKSPACE),
1353 "credential-process" => stabilized_warn(k, "1.74", STABILIZED_CREDENTIAL_PROCESS),
1354 "lints" => stabilized_warn(k, "1.74", STABILIZED_LINTS),
1355 "registry-auth" => stabilized_warn(k, "1.74", STABILIZED_REGISTRY_AUTH),
1356 "check-cfg" => stabilized_warn(k, "1.80", STABILIZED_CHECK_CFG),
1357 "doctest-xcompile" => stabilized_warn(k, "1.89", STABILIZED_DOCTEST_XCOMPILE),
1358 "package-workspace" => stabilized_warn(k, "1.89", STABILIZED_PACKAGE_WORKSPACE),
1359 "build-dir" => stabilized_warn(k, "1.91", STABILIZED_BUILD_DIR),
1360
1361 "advanced-env" => self.advanced_env = parse_empty(k, v)?,
1364 "asymmetric-token" => self.asymmetric_token = parse_empty(k, v)?,
1365 "avoid-dev-deps" => self.avoid_dev_deps = parse_empty(k, v)?,
1366 "binary-dep-depinfo" => self.binary_dep_depinfo = parse_empty(k, v)?,
1367 "bindeps" => self.bindeps = parse_empty(k, v)?,
1368 "build-analysis" => self.build_analysis = parse_empty(k, v)?,
1369 "build-dir-new-layout" => self.build_dir_new_layout = parse_empty(k, v)?,
1370 "build-std" => self.build_std = Some(parse_list(v)),
1371 "build-std-features" => self.build_std_features = Some(parse_list(v)),
1372 "cargo-lints" => self.cargo_lints = parse_empty(k, v)?,
1373 "codegen-backend" => self.codegen_backend = parse_empty(k, v)?,
1374 "config-include" => self.config_include = parse_empty(k, v)?,
1375 "direct-minimal-versions" => self.direct_minimal_versions = parse_empty(k, v)?,
1376 "dual-proc-macros" => self.dual_proc_macros = parse_empty(k, v)?,
1377 "feature-unification" => self.feature_unification = parse_empty(k, v)?,
1378 "fix-edition" => {
1379 let fe = v
1380 .ok_or_else(|| anyhow::anyhow!("-Zfix-edition expected a value"))?
1381 .parse()?;
1382 self.fix_edition = Some(fe);
1383 }
1384 "gc" => self.gc = parse_empty(k, v)?,
1385 "git" => {
1386 self.git =
1387 v.map_or_else(|| Ok(Some(GitFeatures::all())), |v| parse_git(v.split(',')))?
1388 }
1389 "gitoxide" => {
1390 self.gitoxide = v.map_or_else(
1391 || Ok(Some(GitoxideFeatures::all())),
1392 |v| parse_gitoxide(v.split(',')),
1393 )?
1394 }
1395 "host-config" => self.host_config = parse_empty(k, v)?,
1396 "next-lockfile-bump" => self.next_lockfile_bump = parse_empty(k, v)?,
1397 "minimal-versions" => self.minimal_versions = parse_empty(k, v)?,
1398 "msrv-policy" => self.msrv_policy = parse_empty(k, v)?,
1399 "mtime-on-use" => self.mtime_on_use = parse_empty(k, v)?,
1401 "no-embed-metadata" => self.no_embed_metadata = parse_empty(k, v)?,
1402 "no-index-update" => self.no_index_update = parse_empty(k, v)?,
1403 "panic-abort-tests" => self.panic_abort_tests = parse_empty(k, v)?,
1404 "public-dependency" => self.public_dependency = parse_empty(k, v)?,
1405 "profile-hint-mostly-unused" => self.profile_hint_mostly_unused = parse_empty(k, v)?,
1406 "profile-rustflags" => self.profile_rustflags = parse_empty(k, v)?,
1407 "trim-paths" => self.trim_paths = parse_empty(k, v)?,
1408 "publish-timeout" => self.publish_timeout = parse_empty(k, v)?,
1409 "root-dir" => self.root_dir = v.map(|v| v.into()),
1410 "rustdoc-depinfo" => self.rustdoc_depinfo = parse_empty(k, v)?,
1411 "rustdoc-map" => self.rustdoc_map = parse_empty(k, v)?,
1412 "rustdoc-scrape-examples" => self.rustdoc_scrape_examples = parse_empty(k, v)?,
1413 "sbom" => self.sbom = parse_empty(k, v)?,
1414 "section-timings" => self.section_timings = parse_empty(k, v)?,
1415 "separate-nightlies" => self.separate_nightlies = parse_empty(k, v)?,
1416 "checksum-freshness" => self.checksum_freshness = parse_empty(k, v)?,
1417 "skip-rustdoc-fingerprint" => self.skip_rustdoc_fingerprint = parse_empty(k, v)?,
1418 "script" => self.script = parse_empty(k, v)?,
1419 "target-applies-to-host" => self.target_applies_to_host = parse_empty(k, v)?,
1420 "unstable-options" => self.unstable_options = parse_empty(k, v)?,
1421 "warnings" => self.warnings = parse_empty(k, v)?,
1422 _ => bail!(
1423 "\
1424 unknown `-Z` flag specified: {k}\n\n\
1425 For available unstable features, see \
1426 https://doc.rust-lang.org/nightly/cargo/reference/unstable.html\n\
1427 If you intended to use an unstable rustc feature, try setting `RUSTFLAGS=\"-Z{k}\"`"
1428 ),
1429 }
1430
1431 Ok(())
1432 }
1433
1434 pub fn fail_if_stable_opt(&self, flag: &str, issue: u32) -> CargoResult<()> {
1437 self.fail_if_stable_opt_custom_z(flag, issue, "unstable-options", self.unstable_options)
1438 }
1439
1440 pub fn fail_if_stable_opt_custom_z(
1441 &self,
1442 flag: &str,
1443 issue: u32,
1444 z_name: &str,
1445 enabled: bool,
1446 ) -> CargoResult<()> {
1447 if !enabled {
1448 let see = format!(
1449 "See https://github.com/rust-lang/cargo/issues/{issue} for more \
1450 information about the `{flag}` flag."
1451 );
1452 let channel = channel();
1454 if channel == "nightly" || channel == "dev" {
1455 bail!(
1456 "the `{flag}` flag is unstable, pass `-Z {z_name}` to enable it\n\
1457 {see}"
1458 );
1459 } else {
1460 bail!(
1461 "the `{flag}` flag is unstable, and only available on the nightly channel \
1462 of Cargo, but this is the `{channel}` channel\n\
1463 {SEE_CHANNELS}\n\
1464 {see}"
1465 );
1466 }
1467 }
1468 Ok(())
1469 }
1470
1471 pub fn fail_if_stable_command(
1474 &self,
1475 gctx: &GlobalContext,
1476 command: &str,
1477 issue: u32,
1478 z_name: &str,
1479 enabled: bool,
1480 ) -> CargoResult<()> {
1481 if enabled {
1482 return Ok(());
1483 }
1484 let see = format!(
1485 "See https://github.com/rust-lang/cargo/issues/{} for more \
1486 information about the `cargo {}` command.",
1487 issue, command
1488 );
1489 if gctx.nightly_features_allowed {
1490 bail!(
1491 "the `cargo {command}` command is unstable, pass `-Z {z_name}` \
1492 to enable it\n\
1493 {see}",
1494 );
1495 } else {
1496 bail!(
1497 "the `cargo {}` command is unstable, and only available on the \
1498 nightly channel of Cargo, but this is the `{}` channel\n\
1499 {}\n\
1500 {}",
1501 command,
1502 channel(),
1503 SEE_CHANNELS,
1504 see
1505 );
1506 }
1507 }
1508}
1509
1510pub fn channel() -> String {
1512 #[allow(clippy::disallowed_methods)]
1514 if let Ok(override_channel) = env::var("__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS") {
1515 return override_channel;
1516 }
1517 #[allow(clippy::disallowed_methods)]
1521 if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
1522 if staging == "1" {
1523 return "dev".to_string();
1524 }
1525 }
1526 crate::version()
1527 .release_channel
1528 .unwrap_or_else(|| String::from("dev"))
1529}
1530
1531#[allow(clippy::disallowed_methods)]
1536fn cargo_use_gitoxide_instead_of_git2() -> bool {
1537 std::env::var_os("__CARGO_USE_GITOXIDE_INSTEAD_OF_GIT2").map_or(false, |value| value == "1")
1538}
1539
1540pub fn cargo_docs_link(path: &str) -> String {
1543 let url_channel = match channel().as_str() {
1544 "dev" | "nightly" => "nightly/",
1545 "beta" => "beta/",
1546 _ => "",
1547 };
1548 format!("https://doc.rust-lang.org/{url_channel}cargo/{path}")
1549}