@@ -66,6 +66,7 @@ publish = ["my-registry"]
66
66
### rename-dependency
67
67
* Original Issue: [ #1311 ] ( https://github.com/rust-lang/cargo/issues/1311 )
68
68
* PR: [ #4953 ] ( https://github.com/rust-lang/cargo/pull/4953 )
69
+ * Tracking Issue: [ #5653 ] ( https://github.com/rust-lang/cargo/issues/5653 )
69
70
70
71
The rename-dependency feature allows you to import a dependency
71
72
with a different name from the source. This can be useful in a few scenarios:
@@ -102,6 +103,7 @@ extern crate baz; // git repository
102
103
### publish-lockfile
103
104
* Original Issue: [ #2263 ] ( https://github.com/rust-lang/cargo/issues/2263 )
104
105
* PR: [ #5093 ] ( https://github.com/rust-lang/cargo/pull/5093 )
106
+ * Tracking Issue: [ #5654 ] ( https://github.com/rust-lang/cargo/issues/5654 )
105
107
106
108
When creating a ` .crate ` file for distribution, Cargo has historically
107
109
not included the ` Cargo.lock ` file. This can cause problems with
@@ -121,6 +123,7 @@ publish-lockfile = true
121
123
122
124
### Offline Mode
123
125
* Original Issue: [ #4686 ] ( https://github.com/rust-lang/cargo/issues/4686 )
126
+ * Tracking Issue: [ #5655 ] ( https://github.com/rust-lang/cargo/issues/5655 )
124
127
125
128
The ` -Z offline ` flag prevents Cargo from attempting to access the network for
126
129
any reason. Typically Cargo will stop with an error if it wants to access the
@@ -150,6 +153,7 @@ generated if dev-dependencies are skipped.
150
153
151
154
### minimal-versions
152
155
* Original Issue: [ #4100 ] ( https://github.com/rust-lang/cargo/issues/4100 )
156
+ * Tracking Issue: [ #5657 ] ( https://github.com/rust-lang/cargo/issues/5657 )
153
157
154
158
When a ` Cargo.lock ` file is generated, the ` -Z minimal-versions ` flag will
155
159
resolve the dependencies to the minimum semver version that will satisfy the
@@ -251,6 +255,7 @@ cargo +nightly build -Z config-profile
251
255
252
256
### Namespaced features
253
257
* Original issue: [ #1286 ] ( https://github.com/rust-lang/cargo/issues/1286 )
258
+ * Tracking Issue: [ rust-lang/cargo #5565 ] ( https://github.com/rust-lang/cargo/issues/5565 )
254
259
255
260
Currently, it is not possible to have a feature and a dependency with the same
256
261
name in the manifest. If you set ` namespaced-features ` to ` true ` , the namespaces
0 commit comments