Skip to content

Commit 78d4f2c

Browse files
committed
Make sparse the default protocol for crates.io
1 parent 7cba527 commit 78d4f2c

File tree

6 files changed

+12
-18
lines changed

6 files changed

+12
-18
lines changed

src/cargo/core/features.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,6 @@ unstable_cli_options!(
725725
panic_abort_tests: bool = ("Enable support to run tests with -Cpanic=abort"),
726726
profile_rustflags: bool = ("Enable the `rustflags` option in profiles in .cargo/config.toml file"),
727727
host_config: bool = ("Enable the [host] section in the .cargo/config.toml file"),
728-
sparse_registry: bool = ("Use the sparse protocol when accessing crates.io"),
729728
registry_auth: bool = ("Authentication for alternative registries, and generate registry authentication tokens using asymmetric cryptography"),
730729
target_applies_to_host: bool = ("Enable the `target-applies-to-host` key in the .cargo/config.toml file"),
731730
rustdoc_map: bool = ("Allow passing external documentation mappings to rustdoc"),
@@ -795,10 +794,7 @@ const STABILISED_MULTITARGET: &str = "Multiple `--target` options are now always
795794
const STABILIZED_TERMINAL_WIDTH: &str =
796795
"The -Zterminal-width option is now always enabled for terminal output.";
797796

798-
const STABILISED_SPARSE_REGISTRY: &str = "This flag currently still sets the default protocol \
799-
to `sparse` when accessing crates.io. However, this will be removed in the future. \n\
800-
The stable equivalent is to set the config value `registries.crates-io.protocol = 'sparse'`\n\
801-
or environment variable `CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse`";
797+
const STABILISED_SPARSE_REGISTRY: &str = "The sparse protocol is now the default for crates.io";
802798

803799
fn deserialize_build_std<'de, D>(deserializer: D) -> Result<Option<Vec<String>>, D::Error>
804800
where
@@ -1079,12 +1075,7 @@ impl CliUnstable {
10791075
"multitarget" => stabilized_warn(k, "1.64", STABILISED_MULTITARGET),
10801076
"rustdoc-map" => self.rustdoc_map = parse_empty(k, v)?,
10811077
"terminal-width" => stabilized_warn(k, "1.68", STABILIZED_TERMINAL_WIDTH),
1082-
"sparse-registry" => {
1083-
// Once sparse-registry becomes the default for crates.io, `sparse_registry` should
1084-
// be removed entirely from `CliUnstable`.
1085-
stabilized_warn(k, "1.68", STABILISED_SPARSE_REGISTRY);
1086-
self.sparse_registry = parse_empty(k, v)?;
1087-
}
1078+
"sparse-registry" => stabilized_warn(k, "1.68", STABILISED_SPARSE_REGISTRY),
10881079
"registry-auth" => self.registry_auth = parse_empty(k, v)?,
10891080
"namespaced-features" => stabilized_warn(k, "1.60", STABILISED_NAMESPACED_FEATURES),
10901081
"weak-dep-features" => stabilized_warn(k, "1.60", STABILIZED_WEAK_DEP_FEATURES),

src/cargo/core/source/source_id.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ impl SourceId {
254254
"unsupported registry protocol `{unknown}` (defined in {})",
255255
proto.as_ref().unwrap().definition
256256
),
257-
None => config.cli_unstable().sparse_registry,
257+
None => true,
258258
};
259259
Ok(is_sparse)
260260
}

src/doc/src/reference/config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ Can be overridden with the `--token` command-line option.
933933

934934
##### `registries.crates-io.protocol`
935935
* Type: string
936-
* Default: `git`
936+
* Default: `sparse`
937937
* Environment: `CARGO_REGISTRIES_CRATES_IO_PROTOCOL`
938938

939939
Specifies the protocol used to access crates.io. Allowed values are `git` or `sparse`.

tests/testsuite/registry.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1926,6 +1926,7 @@ Caused by:
19261926

19271927
#[cargo_test]
19281928
fn disallow_network_git() {
1929+
let _server = RegistryBuilder::new().build();
19291930
let p = project()
19301931
.file(
19311932
"Cargo.toml",
@@ -1952,7 +1953,10 @@ Caused by:
19521953
failed to load source for dependency `foo`
19531954
19541955
Caused by:
1955-
Unable to update registry [..]
1956+
Unable to update registry `crates-io`
1957+
1958+
Caused by:
1959+
failed to update replaced source registry `crates-io`
19561960
19571961
Caused by:
19581962
attempting to make an HTTP request, but --frozen was specified

tests/testsuite/rustdoc_extern_html.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ fn alt_sparse_registry() {
404404
"#,
405405
)
406406
.build();
407-
p.cargo("doc -v --no-deps -Zrustdoc-map -Zsparse-registry")
408-
.masquerade_as_nightly_cargo(&["rustdoc-map", "sparse-registry"])
407+
p.cargo("doc -v --no-deps -Zrustdoc-map")
408+
.masquerade_as_nightly_cargo(&["rustdoc-map"])
409409
.with_stderr_contains(
410410
"[RUNNING] `rustdoc [..]--crate-name foo \
411411
[..]bar=https://example.com/bar/1.0.0/[..]grimm=https://docs.rs/grimm/1.0.0/[..]",

tests/testsuite/vendor.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ fn vendor_sample_config_alt_registry() {
8888

8989
Package::new("log", "0.3.5").alternative(true).publish();
9090

91-
p.cargo("vendor --respect-source-config -Z sparse-registry")
92-
.masquerade_as_nightly_cargo(&["sparse-registry"])
91+
p.cargo("vendor --respect-source-config")
9392
.with_stdout(format!(
9493
r#"[source."{0}"]
9594
registry = "{0}"

0 commit comments

Comments
 (0)