You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
check_cfg:Option<(/*features:*/bool,/*well_known_names:*/bool,/*well_known_values:*/bool,/*output:*/bool)> = ("Specify scope of compile-time checking of `cfg` names/values"),
707
709
codegen_backend:bool = ("Enable the `codegen-backend` option in profiles in .cargo/config.toml file"),
708
710
config_include:bool = ("Enable the `include` key in config files"),
709
711
credential_process:bool = ("Add a config setting to fetch registry authentication tokens by calling an external process"),
check_cfg:Option<(/*features:*/bool,/*well_known_names:*/bool,/*well_known_values:*/bool,/*output:*/bool)> = ("Specify scope of compile-time checking of `cfg` names/values"),
712
+
direct_minimal_versions:bool = ("Resolve minimal dependency versions instead of maximum (direct dependencies only)"),
712
713
doctest_in_workspace:bool = ("Compile doctests with paths relative to the workspace root"),
713
714
doctest_xcompile:bool = ("Compile and run doctests for non-host target using runner config"),
714
715
dual_proc_macros:bool = ("Build proc-macros for both the host and the target"),
715
716
features:Option<Vec<String>> = (HIDDEN),
716
717
gitoxide:Option<GitoxideFeatures> = ("Use gitoxide for the given git interactions, or all of them if no argument is given"),
718
+
host_config:bool = ("Enable the [host] section in the .cargo/config.toml file"),
717
719
jobserver_per_rustc:bool = (HIDDEN),
720
+
lints:bool = ("Pass `[lints]` to the linting tools"),
718
721
minimal_versions:bool = ("Resolve minimal dependency versions instead of maximum"),
719
-
direct_minimal_versions:bool = ("Resolve minimal dependency versions instead of maximum (direct dependencies only)"),
722
+
msrv_policy:bool = ("Enable rust-version aware policy within cargo"),
720
723
mtime_on_use:bool = ("Configure Cargo to update the mtime of used files"),
721
724
no_index_update:bool = ("Do not update the registry index even if the cache is outdated"),
722
725
panic_abort_tests:bool = ("Enable support to run tests with -Cpanic=abort"),
723
726
profile_rustflags:bool = ("Enable the `rustflags` option in profiles in .cargo/config.toml file"),
724
-
host_config:bool = ("Enable the [host] section in the .cargo/config.toml file"),
727
+
publish_timeout:bool = ("Enable the `publish.timeout` key in .cargo/config.toml file"),
725
728
registry_auth:bool = ("Authentication for alternative registries, and generate registry authentication tokens using asymmetric cryptography"),
726
-
target_applies_to_host:bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
727
729
rustdoc_map:bool = ("Allow passing external documentation mappings to rustdoc"),
730
+
rustdoc_scrape_examples:bool = ("Allows Rustdoc to scrape code examples from reverse-dependencies"),
728
731
separate_nightlies:bool = (HIDDEN),
729
-
publish_timeout:bool = ("Enable the `publish.timeout` key in .cargo/config.toml file"),
730
-
unstable_options:bool = ("Allow the usage of unstable options"),
731
732
skip_rustdoc_fingerprint:bool = (HIDDEN),
732
-
rustdoc_scrape_examples:bool = ("Allows Rustdoc to scrape code examples from reverse-dependencies"),
733
-
msrv_policy:bool = ("Enable rust-version aware policy within cargo"),
734
-
lints:bool = ("Pass `[lints]` to the linting tools"),
733
+
target_applies_to_host:bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
734
+
unstable_options:bool = ("Allow the usage of unstable options"),
735
735
);
736
736
737
737
constSTABILIZED_COMPILE_PROGRESS:&str = "The progress bar is now always \
0 commit comments