Skip to content

Commit

Permalink
Use patched version of schemars
Browse files Browse the repository at this point in the history
Use patched version until PR GREsau/schemars#161 is merged.

Signed-off-by: Simon Bechstedt <[email protected]>
  • Loading branch information
SBechstedt committed Jul 13, 2022
1 parent 25f99d5 commit 084a824
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion okapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["rust", "openapi", "swagger"]
categories = ["web-programming"]

[dependencies]
schemars = { version = "0.8", features = ["uuid1"] }
schemars = { path = "../../schemars/schemars", features = ["uuid1"] }
indexmap = { version = "1.2", features = ["serde-1"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion rocket-okapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ categories = ["web-programming"]

[dependencies]
rocket = { version = "=0.5.0-rc.2", default-features = false, features = ["json"] }
schemars = { version = "0.8.10" }
#schemars = { version = "0.8.10" }
schemars = { path = "../../schemars/schemars" }
okapi = { version = "0.7.0-rc.1", path = "../okapi" }
rocket_okapi_codegen = { version = "=0.8.0-rc.2", path = "../rocket-okapi-codegen" }
serde = "1.0"
Expand Down

0 comments on commit 084a824

Please sign in to comment.