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
Specifies the protocol used to access crates.io. Allowed values are `git` or `sparse`.
901
+
902
+
`git` causes Cargo to clone the entire index of all packages ever published to [crates.io] from <https://github.com/rust-lang/crates.io-index/>.
903
+
This can have performance implications due to the size of the index.
904
+
`sparse` is a newer protocol which uses HTTPS to download only what is necessary from <https://index.crates.io/>.
905
+
This can result in a significant performance improvement for resolving new dependencies in most situations.
906
+
907
+
More information about registry protocols may be found in the [Registries chapter](registries.md).
908
+
895
909
#### `[registry]`
896
910
897
911
The `[registry]` table controls the default registry used when one is not
Copy file name to clipboardexpand all lines: src/doc/src/reference/unstable.md
+5-27
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,6 @@ Each new feature described below should explain how to use it.
97
97
* Registries
98
98
*[credential-process](#credential-process) — Adds support for fetching registry tokens from an external authentication program.
99
99
*[`cargo logout`](#cargo-logout) — Adds the `logout` command to remove the currently saved registry token.
100
-
*[sparse-registry](#sparse-registry) — Adds support for fetching from static-file HTTP registries (`sparse+`)
101
100
*[publish-timeout](#publish-timeout) — Controls the timeout between uploading the crate and being available in the index
102
101
*[registry-auth](#registry-auth) — Adds support for authenticated registries, and generate registry authentication tokens using asymmetric cryptography.
The `sparse-registry` feature allows cargo to interact with remote registries served
800
-
over plain HTTP rather than git. These registries can be identified by urls starting with
801
-
`sparse+http://` or `sparse+https://`.
802
-
803
-
When fetching index metadata over HTTP, Cargo only downloads the metadata for relevant
804
-
crates, which can save significant time and bandwidth.
805
-
806
-
The format of the sparse index is identical to a checkout of a git-based index.
807
-
808
-
The `registries.crates-io.protocol` config option can be used to set the default protocol
809
-
for crates.io. This option requires `-Z sparse-registry` to be enabled.
810
-
811
-
*`sparse` — Use sparse index.
812
-
*`git` — Use git index.
813
-
* If the option is unset, it will be sparse index if `-Z sparse-registry` is enabled,
814
-
otherwise it will be git index.
815
-
816
-
Cargo locally caches the crate metadata files, and captures an `ETag` or `Last-Modified`
817
-
HTTP header from the server for each entry. When refreshing crate metadata, Cargo will
818
-
send the `If-None-Match` or `If-Modified-Since` header to allow the server to respond
819
-
with HTTP 304 if the local cache is valid, saving time and bandwidth.
0 commit comments