forked from rwf2/Rocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b405b18
commit 90a6749
Showing
21 changed files
with
175 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_contrib_codegen" | ||
version = "0.4.0-rc.1" | ||
version = "0.4.0-rc.2" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket contrib libraries." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_contrib" | ||
version = "0.4.0-rc.1" | ||
version = "0.4.0-rc.2" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Community contributed libraries for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
@@ -36,8 +36,8 @@ redis_pool = ["databases", "redis", "r2d2_redis"] | |
|
||
[dependencies] | ||
# Global dependencies. | ||
rocket_contrib_codegen = { version = "0.4.0-rc.1", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.0-rc.1", path = "../../core/lib/" } | ||
rocket_contrib_codegen = { version = "0.4.0-rc.2", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.0-rc.2", path = "../../core/lib/" } | ||
log = "0.4" | ||
|
||
# Serialization and templating dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_codegen" | ||
version = "0.4.0-rc.1" | ||
version = "0.4.0-rc.2" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_codegen/" | ||
|
@@ -17,13 +17,13 @@ proc-macro = true | |
[dependencies] | ||
indexmap = "1.0" | ||
quote = "0.6.1" | ||
rocket_http = { version = "0.4.0-rc.1", path = "../http/" } | ||
rocket_http = { version = "0.4.0-rc.2", path = "../http/" } | ||
devise = "0.2" | ||
|
||
[build-dependencies] | ||
yansi = "0.5" | ||
version_check = "0.1.3" | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.0-rc.1", path = "../lib" } | ||
rocket = { version = "0.4.0-rc.2", path = "../lib" } | ||
compiletest_rs = { version = "0.3", features = ["stable"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_http" | ||
version = "0.4.0-rc.1" | ||
version = "0.4.0-rc.2" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Types, traits, and parsers for HTTP requests, responses, and headers. | ||
|
@@ -36,4 +36,4 @@ features = ["server"] | |
optional = true | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.0-rc.1", path = "../lib" } | ||
rocket = { version = "0.4.0-rc.2", path = "../lib" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket" | ||
version = "0.4.0-rc.1" | ||
version = "0.4.0-rc.2" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Web framework for nightly with a focus on ease-of-use, expressibility, and speed. | ||
|
@@ -23,8 +23,8 @@ tls = ["rocket_http/tls"] | |
private-cookies = ["rocket_http/private-cookies"] | ||
|
||
[dependencies] | ||
rocket_codegen = { version = "0.4.0-rc.1", path = "../codegen" } | ||
rocket_http = { version = "0.4.0-rc.1", path = "../http" } | ||
rocket_codegen = { version = "0.4.0-rc.2", path = "../codegen" } | ||
rocket_http = { version = "0.4.0-rc.2", path = "../http" } | ||
yansi = "0.5" | ||
log = "0.4" | ||
toml = "0.4.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Rocket's 2nd v0.4 Release Candidate | ||
|
||
<p class="metadata"><strong> | ||
Posted by <a href="https://sergio.bz">Sergio Benitez</a> on November 30, 2018 | ||
</strong></p> | ||
|
||
After a successful and productive initial v0.4 release candidate, I am happy to | ||
announce that the second release candidate for Rocket v0.4 is now available. | ||
|
||
This release candidate fixes issues identified during the first release | ||
candidate, introduces further features, and leverages upstream `rustc` | ||
contributions for improved diagnostics and stability. As before, this is an | ||
opportunity to discover issues with Rocket v0.4 and its documentation before its | ||
general release. We encourage all users to migrate their applications to the | ||
second release candidate and report any issues to the [GitHub issue tracker]. | ||
To update to `v0.4.0-rc.2`, manually update `rocket` in your `Cargo.toml` file: | ||
|
||
```toml | ||
[dependencies] | ||
rocket = "0.4.0-rc.2" | ||
``` | ||
|
||
Barring any major issues, of which none are expected, the general release of | ||
Rocket v0.4 is planned for Wednesday, December 5th, when we'll post a full news | ||
article covering the biggest features and changes in Rocket v0.4. Until then, | ||
the [CHANGELOG] contains every feature addition, change, and improvement since | ||
v0.4.0-rc.1 and v0.3, as well as information on migrating your applications to | ||
v0.4. All documentation, including the [guide] and [API docs], has been updated | ||
in full for the second release candidate. | ||
|
||
We're excited for your feedback, and we look forward to seeing you again on | ||
Wednesday, December 5th for the general release! | ||
|
||
[GitHub issue tracker]: https://github.com/SergioBenitez/Rocket/issues | ||
[API docs]: https://api.rocket.rs/v0.4/rocket/ | ||
[guide]: ../../guide | ||
[CHANGELOG]: https://github.com/SergioBenitez/Rocket/tree/v0.4/CHANGELOG.md#version-040-rc2-nov-30-2018 | ||
|
||
## About Rocket | ||
|
||
Rocket is a web framework for Rust with a focus on ease of use, expressibility, | ||
and speed. Rocket makes it simple to write fast web applications without | ||
sacrificing flexibility or type safety. All with minimal code. | ||
|
||
Not already using Rocket? Join the tens of thousands of users and hundreds of | ||
companies happily using Rocket today! Rocket's extensive documentation makes it | ||
easy. Get started now by [reading through the guide](../../guide) or learning | ||
more from [the overview](../../overview). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters