diff --git a/examples/custom_schema/Cargo.toml b/examples/custom_schema/Cargo.toml index 1e352ae..168712f 100644 --- a/examples/custom_schema/Cargo.toml +++ b/examples/custom_schema/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } serde = "1.0" serde_json = "1.0" diff --git a/examples/json-web-api/Cargo.toml b/examples/json-web-api/Cargo.toml index 1638932..9ac8ef0 100644 --- a/examples/json-web-api/Cargo.toml +++ b/examples/json-web-api/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } serde = "1.0" diff --git a/examples/secure_request_guard/Cargo.toml b/examples/secure_request_guard/Cargo.toml index 44a730c..adec8e1 100644 --- a/examples/secure_request_guard/Cargo.toml +++ b/examples/secure_request_guard/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json", "secrets"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["rapidoc", "swagger", "secrets"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["rapidoc", "swagger", "secrets"] } serde = "1.0" tokio = "1.6" serde_json = "1.0" diff --git a/examples/special-types/Cargo.toml b/examples/special-types/Cargo.toml index e4c4df5..0b8d845 100644 --- a/examples/special-types/Cargo.toml +++ b/examples/special-types/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } serde = "1.0" diff --git a/examples/streams/Cargo.toml b/examples/streams/Cargo.toml index ae39b10..b1b1e5a 100644 --- a/examples/streams/Cargo.toml +++ b/examples/streams/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["swagger", "rapidoc"] } serde = "1.0" diff --git a/examples/uuid/Cargo.toml b/examples/uuid/Cargo.toml index 1f21655..36c2c9f 100644 --- a/examples/uuid/Cargo.toml +++ b/examples/uuid/Cargo.toml @@ -11,6 +11,6 @@ edition = "2018" [dependencies] rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json", "uuid"] } schemars = { version = "0.8", features = ["uuid"] } -revolt_rocket_okapi = { version = "0.8.0-alpha-1", path = "../../rocket-okapi", features = ["swagger", "rapidoc", "uuid"] } +revolt_rocket_okapi = { version = "0.9.1", path = "../../rocket-okapi", features = ["swagger", "rapidoc", "uuid"] } serde = "1.0" uuid = { version = "0.8.2", features = ["v4"] } diff --git a/okapi/Cargo.toml b/okapi/Cargo.toml index efb9767..71454fc 100644 --- a/okapi/Cargo.toml +++ b/okapi/Cargo.toml @@ -2,7 +2,7 @@ name = "revolt_okapi" description = "Structs for OpenAPI (AKA Swagger) documents" repository = "https://github.com/revoltchat/okapi" -version = "0.9.0" +version = "0.9.1" authors = ["Graham Esau "] edition = "2018" license = "MIT" diff --git a/rocket-okapi-codegen/Cargo.toml b/rocket-okapi-codegen/Cargo.toml index 24cb905..ff074de 100644 --- a/rocket-okapi-codegen/Cargo.toml +++ b/rocket-okapi-codegen/Cargo.toml @@ -2,7 +2,7 @@ name = "revolt_rocket_okapi_codegen" description = "Macros supporting rocket_okapi" repository = "https://github.com/revoltchat/okapi" -version = "0.9.0" +version = "0.9.1" authors = ["Graham Esau "] edition = "2018" license = "MIT" diff --git a/rocket-okapi/Cargo.toml b/rocket-okapi/Cargo.toml index 76bf46d..406e09f 100644 --- a/rocket-okapi/Cargo.toml +++ b/rocket-okapi/Cargo.toml @@ -2,7 +2,7 @@ name = "revolt_rocket_okapi" description = "OpenAPI (AKA Swagger) document generation for Rocket applications" repository = "https://github.com/revoltchat/okapi" -version = "0.9.0" +version = "0.9.1" authors = ["Graham Esau "] edition = "2018" license = "MIT" @@ -13,8 +13,8 @@ categories = ["web-programming"] [dependencies] rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"] } schemars = { version = "0.8" } -revolt_okapi = { version = "0.7.0-rc.1", path = "../okapi" } -revolt_rocket_okapi_codegen = { version = "=0.8.0-rc.1", path = "../rocket-okapi-codegen" } +revolt_okapi = { version = "0.9.1", path = "../okapi" } +revolt_rocket_okapi_codegen = { version = "=0.9.1", path = "../rocket-okapi-codegen" } serde = "1.0" serde_json = "1.0" log = "0.4" diff --git a/rocket-okapi/src/lib.rs b/rocket-okapi/src/lib.rs index 49a0115..b726628 100644 --- a/rocket-okapi/src/lib.rs +++ b/rocket-okapi/src/lib.rs @@ -12,7 +12,7 @@ //! rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } //! schemars = "0.8" //! okapi = { version = "0.6.0-alpha-1" } -//! revolt_rocket_okapi = { version = "0.8.0-alpha-1", features = ["swagger"] } +//! revolt_rocket_okapi = { version = "0.9.1", features = ["swagger"] } //! ``` //! To add documentation to a set of endpoints, a couple of steps are required. The request and //! response types of the endpoint must implement `JsonSchema`. Secondly, the function must be