From 4080d574bdd7d86d3061d19bf735a14efd7cd103 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sat, 12 Jun 2021 22:13:23 +0100 Subject: [PATCH] okapi 0.6.0-alpha-1 and rocket-okapi 0.7.0-alpha-1 --- examples/json-web-api/Cargo.toml | 4 ++-- okapi/Cargo.toml | 2 +- rocket-okapi-codegen/Cargo.toml | 2 +- rocket-okapi/Cargo.toml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/json-web-api/Cargo.toml b/examples/json-web-api/Cargo.toml index 5a3d4962..43cabceb 100644 --- a/examples/json-web-api/Cargo.toml +++ b/examples/json-web-api/Cargo.toml @@ -7,6 +7,6 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } schemars = { version = "0.8", features = ["preserve_order"] } -okapi = { version = "0.5.0-alpha-1", path = "../../okapi" } -rocket_okapi = { version = "0.6.0-alpha-1", path = "../../rocket-okapi" } +okapi = { version = "0.6.0-alpha-1", path = "../../okapi" } +rocket_okapi = { version = "0.7.0-alpha-1", path = "../../rocket-okapi" } serde = "1.0" diff --git a/okapi/Cargo.toml b/okapi/Cargo.toml index cfea287d..078e7015 100644 --- a/okapi/Cargo.toml +++ b/okapi/Cargo.toml @@ -2,7 +2,7 @@ name = "okapi" description = "Structs for OpenAPI (AKA Swagger) documents" repository = "https://github.com/GREsau/okapi" -version = "0.5.0-alpha-1" +version = "0.6.0-alpha-1" authors = ["Graham Esau "] edition = "2018" license = "MIT" diff --git a/rocket-okapi-codegen/Cargo.toml b/rocket-okapi-codegen/Cargo.toml index d3492d3f..b9865bbb 100644 --- a/rocket-okapi-codegen/Cargo.toml +++ b/rocket-okapi-codegen/Cargo.toml @@ -2,7 +2,7 @@ name = "rocket_okapi_codegen" description = "Macros supporting rocket_okapi" repository = "https://github.com/GREsau/okapi" -version = "0.6.0-alpha-1" +version = "0.7.0-alpha-1" authors = ["Graham Esau "] edition = "2018" license = "MIT" diff --git a/rocket-okapi/Cargo.toml b/rocket-okapi/Cargo.toml index 3550bd16..0f457b98 100644 --- a/rocket-okapi/Cargo.toml +++ b/rocket-okapi/Cargo.toml @@ -2,7 +2,7 @@ name = "rocket_okapi" description = "OpenAPI (AKA Swagger) document generation for Rocket applications" repository = "https://github.com/GREsau/okapi" -version = "0.6.0-alpha-1" +version = "0.7.0-alpha-1" authors = ["Graham Esau "] edition = "2018" license = "MIT" @@ -11,7 +11,7 @@ keywords = ["rust", "openapi", "swagger", "rocket"] [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } schemars = { version = "0.8" } -okapi = { version = "0.5.0-alpha-1", path = "../okapi" } -rocket_okapi_codegen = { version = "=0.6.0-alpha-1", path = "../rocket-okapi-codegen" } +okapi = { version = "0.6.0-alpha-1", path = "../okapi" } +rocket_okapi_codegen = { version = "=0.7.0-alpha-1", path = "../rocket-okapi-codegen" } serde = "1.0" serde_json = "1.0"