diff --git a/Cargo.lock b/Cargo.lock index 2434e55c..70eed90a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2584,9 +2584,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.109" +version = "1.0.111" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0652c533506ad7a2e353cce269330d6afd8bdfb6d75e0ace5b35aacbd7b9e9" +checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" dependencies = [ "indexmap 2.1.0", "itoa", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 6dbf46fa..fe6a21dd 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.195" -serde_json = { version = "1.0.109", features = ["raw_value"] } +serde_json = { version = "1.0.111", 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 c2cb5f5c..49676483 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.109", features = ["raw_value"] } +serde_json = { version = "1.0.111", 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 4ea95858..cd13ba37 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.109" +serde_json = "1.0.111" 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 b74cd692..c131cf96 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -8,4 +8,4 @@ license = "Apache-2.0" itertools = "^0.12.0" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.195" -serde_json = "1.0.109" +serde_json = "1.0.111" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index dee733c3..42edf857 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.109" +serde_json = "1.0.111" [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 fecba52c..08c0cde5 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.109" +serde_json = "1.0.111" 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 ec5dbdfc..5cfda001 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.195" serde_derive = "^1.0" -serde_json = { version = "1.0.109", features = ["raw_value"] } +serde_json = { version = "1.0.111", 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"] }