-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
808b10d
commit 7af1784
Showing
53 changed files
with
277 additions
and
277 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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_db_pools_codegen" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"] | ||
description = "Procedural macros for rocket_db_pools." | ||
repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools" | ||
|
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_db_pools" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"] | ||
description = "Rocket async database pooling support" | ||
repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools" | ||
|
@@ -29,12 +29,12 @@ diesel_mysql = ["diesel-async/mysql", "diesel-async/deadpool", "diesel", "deadpo | |
|
||
[dependencies.rocket] | ||
path = "../../../core/lib" | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.rocket_db_pools_codegen] | ||
path = "../codegen" | ||
version = "=0.1.0-rc.4" | ||
version = "0.1.0" | ||
|
||
[dependencies.deadpool] | ||
version = "0.9" | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "rocket_dyn_templates" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Dynamic templating engine integration for Rocket." | ||
documentation = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates/" | ||
documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket/tree/master/contrib/dyn_templates" | ||
readme = "README.md" | ||
|
@@ -22,7 +22,7 @@ notify = "6" | |
normpath = "1" | ||
|
||
[dependencies.rocket] | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
path = "../../core/lib" | ||
default-features = false | ||
|
||
|
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_sync_db_pools_codegen" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for rocket_sync_db_pools." | ||
repository = "https://github.com/SergioBenitez/Rocket/contrib/sync_db_pools" | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "rocket_sync_db_pools" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Rocket async database pooling support for sync database drivers." | ||
repository = "https://github.com/SergioBenitez/Rocket/tree/v0.5-rc/contrib/sync_db_pools" | ||
repository = "https://github.com/SergioBenitez/Rocket/tree/v0.5/contrib/sync_db_pools" | ||
readme = "../README.md" | ||
keywords = ["rocket", "framework", "database", "pools"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -35,11 +35,11 @@ memcache = { version = "0.15", optional = true } | |
r2d2-memcache = { version = "0.6", optional = true } | ||
|
||
[dependencies.rocket_sync_db_pools_codegen] | ||
version = "=0.1.0-rc.4" | ||
version = "0.1.0" | ||
path = "../codegen" | ||
|
||
[dependencies.rocket] | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
path = "../../../core/lib" | ||
default-features = false | ||
|
||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "rocket_ws" | ||
version = "0.1.0-rc.4" | ||
version = "0.1.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "WebSocket support for Rocket." | ||
documentation = "https://api.rocket.rs/v0.5-rc/rocket_ws/" | ||
documentation = "https://api.rocket.rs/v0.5/rocket_ws/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket/tree/master/contrib/ws" | ||
readme = "README.md" | ||
|
@@ -20,7 +20,7 @@ tungstenite = ["tokio-tungstenite"] | |
tokio-tungstenite = { version = "0.20", optional = true } | ||
|
||
[dependencies.rocket] | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
path = "../../core/lib" | ||
default-features = false | ||
|
||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "rocket_codegen" | ||
version = "0.5.0-rc.4" | ||
version = "0.5.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.5-rc/rocket_codegen/" | ||
documentation = "https://api.rocket.rs/v0.5/rocket_codegen/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket" | ||
readme = "../../README.md" | ||
|
@@ -21,7 +21,7 @@ quote = "1.0" | |
syn = { version = "2.0", features = ["full", "visit", "visit-mut", "extra-traits"] } | ||
proc-macro2 = "1.0.27" | ||
devise = "0.4" | ||
rocket_http = { version = "=0.5.0-rc.4", path = "../http/" } | ||
rocket_http = { version = "0.5.0", path = "../http/" } | ||
unicode-xid = "0.2" | ||
version_check = "0.9" | ||
glob = "0.3" | ||
|
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,11 +1,11 @@ | ||
[package] | ||
name = "rocket_http" | ||
version = "0.5.0-rc.4" | ||
version = "0.5.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Types, traits, and parsers for HTTP requests, responses, and headers. | ||
""" | ||
documentation = "https://api.rocket.rs/v0.5-rc/rocket_http/" | ||
documentation = "https://api.rocket.rs/v0.5/rocket_http/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket" | ||
readme = "../../README.md" | ||
|
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,11 +1,11 @@ | ||
[package] | ||
name = "rocket" | ||
version = "0.5.0-rc.4" | ||
version = "0.5.0" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Web framework with a focus on usability, security, extensibility, and speed. | ||
""" | ||
documentation = "https://api.rocket.rs/v0.5-rc/rocket/" | ||
documentation = "https://api.rocket.rs/v0.5/rocket/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket" | ||
readme = "../../README.md" | ||
|
@@ -61,11 +61,11 @@ tokio-stream = { version = "0.1.6", features = ["signal", "time"] } | |
state = "0.6" | ||
|
||
[dependencies.rocket_codegen] | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
path = "../codegen" | ||
|
||
[dependencies.rocket_http] | ||
version = "=0.5.0-rc.4" | ||
version = "0.5.0" | ||
path = "../http" | ||
features = ["serde"] | ||
|
||
|
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
Oops, something went wrong.