-
-
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
3276b87
commit 08e5b6d
Showing
23 changed files
with
44 additions
and
35 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.9" | ||
version = "0.4.10" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket contrib libraries." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
@@ -26,6 +26,6 @@ yansi = "0.5" | |
version_check = "0.9.1" | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.9", path = "../../core/lib" } | ||
rocket_contrib = { version = "0.4.9", path = "../lib", features = ["diesel_sqlite_pool"] } | ||
rocket = { version = "0.4.10", path = "../../core/lib" } | ||
rocket_contrib = { version = "0.4.10", path = "../lib", features = ["diesel_sqlite_pool"] } | ||
trybuild = "1.0" |
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.9" | ||
version = "0.4.10" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Community contributed libraries for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
@@ -38,8 +38,8 @@ memcache_pool = ["databases", "memcache", "r2d2-memcache"] | |
|
||
[dependencies] | ||
# Global dependencies. | ||
rocket_contrib_codegen = { version = "0.4.9", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.9", path = "../../core/lib/", default-features = false } | ||
rocket_contrib_codegen = { version = "0.4.10", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.10", path = "../../core/lib/", default-features = false } | ||
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_codegen" | ||
version = "0.4.9" | ||
version = "0.4.10" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_codegen/" | ||
|
@@ -17,7 +17,7 @@ proc-macro = true | |
[dependencies] | ||
indexmap = "1.0" | ||
quote = "0.6.1" | ||
rocket_http = { version = "0.4.9", path = "../http/" } | ||
rocket_http = { version = "0.4.10", path = "../http/" } | ||
devise = "0.2" | ||
glob = "0.3" | ||
|
||
|
@@ -26,5 +26,5 @@ yansi = "0.5" | |
version_check = "0.9.1" | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.9", path = "../lib" } | ||
rocket = { version = "0.4.10", path = "../lib" } | ||
trybuild = "1.0" |
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.9" | ||
version = "0.4.10" | ||
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.9", path = "../lib" } | ||
rocket = { version = "0.4.10", 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.9" | ||
version = "0.4.10" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Web framework for nightly with a focus on ease-of-use, expressibility, and speed. | ||
|
@@ -24,11 +24,11 @@ sse = [] | |
private-cookies = ["rocket_http/private-cookies"] | ||
|
||
[dependencies] | ||
rocket_codegen = { version = "0.4.9", path = "../codegen" } | ||
rocket_http = { version = "0.4.9", path = "../http" } | ||
rocket_codegen = { version = "0.4.10", path = "../codegen" } | ||
rocket_http = { version = "0.4.10", path = "../http" } | ||
yansi = "0.5" | ||
log = "0.4" | ||
toml = "0.4.9" | ||
toml = "0.4.10" | ||
num_cpus = "1.0" | ||
state = "0.4.1" | ||
time = "0.1" | ||
|
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