File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -219,15 +219,16 @@ fn rocket() -> rocket::Rocket {
219
219
}
220
220
```
221
221
222
- Rocket was only able to achieve its power and ergonomics by
223
- using nightly-only features. You can see two of them in the example above.
224
- However, as you may guess from the name of those two features, these are the
225
- ones that are finally stable! [ This
226
- issue] ( https://github.com/SergioBenitez/Rocket/issues/19 ) has been tracking
227
- the history of all of the various features, and now they're all checked off!
228
-
229
- Rocket 0.5 has not yet been released, but when it is, many folks will be very
230
- happy :)
222
+ Until today, Rocket depended on nightly-only features to deliver on its promise
223
+ of flexibility and ergonomics. In fact, as can be seen on the [ project's
224
+ homepage] ( https://rocket.rs/v0.4 ) , the same example above in the current version
225
+ of Rocket requires the ` proc_macro_hygiene ` feature to compile. However, as you
226
+ may guess from the feature's name, today it ships in stable! [ This
227
+ issue] ( https://github.com/SergioBenitez/Rocket/issues/19 ) tracked the history of
228
+ nightly-only features in Rocket. Now, they're all checked off!
229
+
230
+ This next version of Rocket is still in the works, but when released, many folks
231
+ will be very happy :)
231
232
232
233
### Library changes
233
234
You can’t perform that action at this time.
0 commit comments