Skip to content

Commit

Permalink
v0.3.0 - update to schemars 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GREsau committed Dec 9, 2019
1 parent 5d5c84c commit ca68496
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions examples/json-web-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors = ["Graham Esau <[email protected]>"]
edition = "2018"

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

[dependencies.rocket_contrib]
version = "0.4.2"
Expand Down
4 changes: 2 additions & 2 deletions 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.2.0"
version = "0.3.0"
authors = ["Graham Esau <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,6 +12,6 @@ keywords = ["rust", "openapi", "swagger"]
derive_json_schema = ["schemars/derive_json_schema"]

[dependencies]
schemars = "0.5"
schemars = "0.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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.2.0"
version = "0.3.0"
authors = ["Graham Esau <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
10 changes: 5 additions & 5 deletions rocket-okapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
name = "rocket_okapi"
description = "OpenAPI (AKA Swagger) document generation for Rocket applications"
repository = "https://github.com/GREsau/okapi"
version = "0.2.0"
version = "0.3.0"
authors = ["Graham Esau <[email protected]>"]
edition = "2018"
license = "MIT"
keywords = ["rust", "openapi", "swagger", "rocket"]

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

[dependencies.rocket_contrib]
Expand Down

0 comments on commit ca68496

Please sign in to comment.