Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GREsau committed Mar 26, 2020
1 parent 82cea31 commit 32ee7f4
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.7.0"
okapi = { version = "0.3.0", path = "../../okapi" }
rocket_okapi = { version = "0.3.0", path = "../../rocket-okapi" }
okapi = { version = "0.4.0", path = "../../okapi" }
rocket_okapi = { version = "0.4.0", path = "../../rocket-okapi" }
rocket = { version = "0.4.3", default-features = false }
serde = "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.3.0"
version = "0.4.0"
authors = ["Graham Esau <[email protected]>"]
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.3.6"
version = "0.4.0"
authors = ["Graham Esau <[email protected]>"]
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.3.6"
version = "0.4.0"
authors = ["Graham Esau <[email protected]>"]
edition = "2018"
license = "MIT"
keywords = ["rust", "openapi", "swagger", "rocket"]

[dependencies]
schemars = "0.7.0"
okapi = { version = "0.3.0", path = "../okapi" }
rocket_okapi_codegen = { version = "=0.3.6", path = "../rocket-okapi-codegen" }
okapi = { version = "0.4.0", path = "../okapi" }
rocket_okapi_codegen = { version = "=0.4.0", path = "../rocket-okapi-codegen" }
rocket = { version = "0.4.3", default-features = false }
serde = "1.0"
serde_json = "1.0"
Expand Down

0 comments on commit 32ee7f4

Please sign in to comment.