Skip to content

Commit

Permalink
chore(openapi): bump sqlx and prost-wkt-types (#861)
Browse files Browse the repository at this point in the history
Co-authored-by: hzlinyiyu <[email protected]>
  • Loading branch information
attila-lin and hzlinyiyu-netease authored Aug 3, 2024
1 parent 9d32cec commit 9db2be1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions poem-openapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ bson = { version = "2.0.0", optional = true }
rust_decimal = { version = "1.22.0", optional = true }
humantime = { version = "2.1.0", optional = true }
ipnet = { version = "2.7.1", optional = true }
prost-wkt-types = { version = "0.5.0", optional = true }
prost-wkt-types = { version = "0.6.0", optional = true }
geo-types = { version = "0.7.12", optional = true }
geojson = { version = "0.24.1", features = ["geo-types"], optional = true }
sqlx = { version = "0.7.4", features = [
sqlx = { version = "0.8.0", features = [
"json",
"postgres",
"sqlite",
Expand Down
2 changes: 1 addition & 1 deletion poem-openapi/src/registry/clean_unused.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl<'a> Document<'a> {
self.traverse_schema(used_types, schema_ref);
}

for schema_ref in &schema.items {
if let Some(schema_ref) = &schema.items {
self.traverse_schema(used_types, schema_ref);
}

Expand Down
2 changes: 1 addition & 1 deletion poem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ tokio-stream = { workspace = true, optional = true }

# Feature optional dependencies
anyhow = { version = "1.0.0", optional = true }
eyre06 = { package = "eyre", version = "0.6", optional = true }
eyre06 = { package = "eyre", version = "0.6.12", optional = true }
uuid = { version = "1.8.0", optional = true, default-features = false, features = [
"v4",
] }
Expand Down

0 comments on commit 9db2be1

Please sign in to comment.