Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GREsau committed Dec 5, 2019
1 parent f735f9d commit 5d5c84c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/json-web-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2018"

[dependencies]
schemars = "0.5"
okapi = { version = "0.1.0", path = "../../okapi" }
rocket_okapi = { version = "0.1.0", path = "../../rocket-okapi" }
okapi = { version = "0.2.0", path = "../../okapi" }
rocket_okapi = { version = "0.2.0", path = "../../rocket-okapi" }
rocket = { version = "0.4.2", default-features = false }
serde = { version = "1.0" }

Expand Down
2 changes: 1 addition & 1 deletion okapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "okapi"
description = "Structs for OpenAPI (AKA Swagger) documents"
repository = "https://github.com/GREsau/okapi"
version = "0.1.2"
version = "0.2.0"
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rocket-okapi-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rocket_okapi_codegen"
description = "Macros supporting rocket_okapi"
repository = "https://github.com/GREsau/okapi"
version = "0.1.2"
version = "0.2.0"
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
edition = "2018"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions rocket-okapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
name = "rocket_okapi"
description = "OpenAPI (AKA Swagger) document generation for Rocket applications"
repository = "https://github.com/GREsau/okapi"
version = "0.1.2"
version = "0.2.0"
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
edition = "2018"
license = "MIT"
keywords = ["rust", "openapi", "swagger", "rocket"]

[dependencies]
schemars = "0.5"
okapi = { version = "0.1.2", path = "../okapi" }
rocket_okapi_codegen = { version = "0.1.2", path = "../rocket-okapi-codegen" }
okapi = { version = "0.2.0", path = "../okapi" }
rocket_okapi_codegen = { version = "0.2.0", path = "../rocket-okapi-codegen" }
rocket = { version = "0.4.2", default-features = false }
serde = { version = "1.0" }
serde_json = "1.0"
Expand Down

0 comments on commit 5d5c84c

Please sign in to comment.