diff --git a/Cargo.lock b/Cargo.lock index fd70757ee..ac412c748 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2583,9 +2583,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.111" +version = "1.0.112" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +checksum = "4d1bd37ce2324cf3bf85e5a25f96eb4baf0d5aa6eba43e7ae8958870c4ec48ed" dependencies = [ "indexmap 2.1.0", "itoa", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 0231c3e87..81c96fa98 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -26,7 +26,7 @@ percent-encoding = "2.3.1" prometheus = "0.13.3" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] } thiserror = "1.0" tokio = { version = "1.35.1", features = ["full"] } diff --git a/crates/documentation/openapi/Cargo.toml b/crates/documentation/openapi/Cargo.toml index 49676483e..abb3b1ec0 100644 --- a/crates/documentation/openapi/Cargo.toml +++ b/crates/documentation/openapi/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" [dependencies] ndc-postgres = { path = "../../connectors/ndc-postgres" } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } [dev-dependencies] insta = { version = "1.34.0", features = ["json"] } diff --git a/crates/query-engine/execution/Cargo.toml b/crates/query-engine/execution/Cargo.toml index cd13ba377..74a8a5e67 100644 --- a/crates/query-engine/execution/Cargo.toml +++ b/crates/query-engine/execution/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" query-engine-sql = { path = "../sql" } prometheus = "0.13.3" -serde_json = "1.0.111" +serde_json = "1.0.112" sqlformat = "0.2.3" sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls", "uuid" ] } tracing = "0.1.40" diff --git a/crates/query-engine/sql/Cargo.toml b/crates/query-engine/sql/Cargo.toml index 81e5a88a8..4b20a14af 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -7,4 +7,4 @@ license = "Apache-2.0" [dependencies] schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" -serde_json = "1.0.111" +serde_json = "1.0.112" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index 42edf8571..3837906f3 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -11,7 +11,7 @@ query-engine-sql = { path = "../sql" } indexmap = "2" multimap = "0.9.1" -serde_json = "1.0.111" +serde_json = "1.0.112" [dev-dependencies] insta = { version = "1.34.0", features = ["json"] } diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index 08c0cde5d..6135433cb 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -28,6 +28,6 @@ tests-common = { path = "../tests-common" } axum = "0.6.20" insta = { version = "1.34.0", features = ["json"] } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = "1.0.111" +serde_json = "1.0.112" test-each = "0.2.1" tokio = { version = "1.35.1", features = ["full"] } diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index 450c0df65..ab6912445 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -23,7 +23,7 @@ reqwest = "0.11.23" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" serde_derive = "^1.0" -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } similar-asserts = "1.5.0" sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] } tokio = { version = "1.35.1", features = ["full"] }