-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated all crates to Rust 2021 edition
- Loading branch information
Showing
14 changed files
with
14 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ members = [ | |
"examples/openapi_attributes", | ||
"examples/raw_identifiers", | ||
] | ||
resolver = "2" |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "custom_schema" | ||
version = "0.1.0" | ||
authors = ["Ralph Bisschops <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json"] } | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
authors = [ | ||
"Ralph Bisschops <[email protected]>", | ||
] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json"] } | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "json_web_api" | ||
version = "0.1.0" | ||
authors = ["Graham Esau <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json"] } | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "raw_identifiers" | ||
version = "0.1.0" | ||
authors = ["Alex Payne <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "secure_request_guard" | ||
version = "0.1.0" | ||
authors = ["Kristoffer Ödmark <[email protected]>", "Ralph Bisschops <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json", "secrets"] } | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "special-types" | ||
version = "0.1.0" | ||
authors = ["Ralph Bisschops <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json"] } | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "streams" | ||
version = "0.1.0" | ||
authors = ["Ralph Bisschops <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json"] } | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = [ | |
"Rafael Epplee <[email protected]>", | ||
"Ralph Bisschops <[email protected]>", | ||
] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
rocket = { version = "=0.5.0", default-features = false, features = ["json", "uuid"] } | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "Structs for OpenAPI (AKA Swagger) documents" | |
repository = "https://github.com/GREsau/okapi" | ||
version = "0.7.0" | ||
authors = ["Graham Esau <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
license = "MIT" | ||
readme = "../README.md" | ||
keywords = ["rust", "openapi", "swagger"] | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "Macros supporting rocket_okapi" | |
repository = "https://github.com/GREsau/okapi" | ||
version = "0.8.0" | ||
authors = ["Graham Esau <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
license = "MIT" | ||
readme = "../README.md" | ||
keywords = ["rust", "openapi", "swagger", "rocket"] | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "OpenAPI (AKA Swagger) document generation for Rocket applications | |
repository = "https://github.com/GREsau/okapi" | ||
version = "0.8.0" | ||
authors = ["Graham Esau <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
license = "MIT" | ||
readme = "../README.md" | ||
keywords = ["rust", "openapi", "swagger", "rocket"] | ||
|