@@ -76,6 +76,10 @@ rustdocflags = ["…", "…"] # custom flags to pass to rustdoc
76
76
incremental = true # whether or not to enable incremental compilation
77
77
dep-info-basedir = " …" # path for the base directory for targets in depfiles
78
78
79
+ [credential-alias ]
80
+ # Provides a way to define aliases for credential providers.
81
+ my-alias = [" /usr/bin/cargo-credential-example" , " --argument" , " value" , " --flag" ]
82
+
79
83
[doc ]
80
84
browser = " chromium" # browser to use with `cargo doc --open`,
81
85
# overrides the `BROWSER` environment variable
@@ -142,10 +146,16 @@ rpath = false # Sets the rpath linking option.
142
146
[registries .<name> ] # registries other than crates.io
143
147
index = " …" # URL of the registry index
144
148
token = " …" # authentication token for the registry
149
+ credential-provider = " cargo:token" # The credential provider for this registry.
150
+
151
+ [registries .crates-io ]
152
+ protocol = " sparse" # The protocol to use to access crates.io.
145
153
146
154
[registry ]
147
155
default = " …" # name of the default registry
148
156
token = " …" # authentication token for crates.io
157
+ credential-provider = " cargo:token" # The credential provider for crates.io.
158
+ global-credential-providers = [" cargo:token" ] # The credential providers to use by default.
149
159
150
160
[source .<name> ] # source definition and replacement
151
161
replace-with = " …" # replace this source with the given named source
@@ -1008,7 +1018,7 @@ See [Registry Authentication](registry-authentication.md) for more information.
1008
1018
1009
1019
#### ` registries.crates-io.protocol `
1010
1020
* Type: string
1011
- * Default: ` sparse `
1021
+ * Default: ` " sparse" `
1012
1022
* Environment: ` CARGO_REGISTRIES_CRATES_IO_PROTOCOL `
1013
1023
1014
1024
Specifies the protocol used to access crates.io. Allowed values are ` git ` or ` sparse ` .
0 commit comments