diff --git a/Cargo.lock b/Cargo.lock index 6984ffa7..e50514a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2543,9 +2543,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.107" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" dependencies = [ "indexmap 2.0.2", "itoa", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 729f6287..8a68b842 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -26,7 +26,7 @@ percent-encoding = "2.3.0" prometheus = "0.13.3" schemars = { version = "0.8.15", features = ["smol_str", "preserve_order"] } serde = "1.0.190" -serde_json = { version = "1.0.107", features = ["raw_value"] } +serde_json = { version = "1.0.108", features = ["raw_value"] } sqlx = { version = "0.7.2", features = [ "json", "postgres", "runtime-tokio-rustls" ] } thiserror = "1.0" tokio = { version = "1.33.0", features = ["full"] } diff --git a/crates/documentation/openapi/Cargo.toml b/crates/documentation/openapi/Cargo.toml index 7c0ecdc6..2f7878b9 100644 --- a/crates/documentation/openapi/Cargo.toml +++ b/crates/documentation/openapi/Cargo.toml @@ -8,4 +8,4 @@ license.workspace = true insta = { version = "1.34.0", features = ["json"] } ndc-postgres = { path = "../../connectors/ndc-postgres" } schemars = { version = "0.8.15", features = ["smol_str", "preserve_order"] } -serde_json = { version = "1.0.107", features = ["raw_value"] } +serde_json = { version = "1.0.108", features = ["raw_value"] } diff --git a/crates/query-engine/execution/Cargo.toml b/crates/query-engine/execution/Cargo.toml index 12685517..70e17847 100644 --- a/crates/query-engine/execution/Cargo.toml +++ b/crates/query-engine/execution/Cargo.toml @@ -8,7 +8,7 @@ license.workspace = true query-engine-sql = { path = "../sql" } prometheus = "0.13.3" -serde_json = "1.0.107" +serde_json = "1.0.108" sqlformat = "0.2.2" sqlx = { version = "0.7.2", 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 e2c8b14f..13a34b3e 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -5,4 +5,4 @@ edition.workspace = true license.workspace = true [dependencies] -serde_json = "1.0.107" +serde_json = "1.0.108" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index b5470e5c..002f72f6 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -12,7 +12,7 @@ query-engine-metadata = { path = "../metadata" } query-engine-sql = { path = "../sql" } indexmap = "1" -serde_json = "1.0.107" +serde_json = "1.0.108" [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 f326847e..f22cdb1c 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -27,6 +27,6 @@ tests-common = { path = "../tests-common" } axum = "0.6.20" insta = { version = "1.34.0", features = ["json"] } schemars = { version = "0.8.15", features = ["smol_str", "preserve_order"] } -serde_json = "1.0.107" +serde_json = "1.0.108" test-each = "0.2.1" tokio = { version = "1.33.0", features = ["full"] } diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index d17a74fc..5c73bb6a 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -23,7 +23,7 @@ reqwest = "0.11.22" schemars = { version = "0.8.15", features = ["smol_str", "preserve_order"] } serde = "1.0.190" serde_derive = "^1.0" -serde_json = { version = "1.0.107", features = ["raw_value"] } +serde_json = { version = "1.0.108", features = ["raw_value"] } similar-asserts = "1.5.0" sqlx = { version = "0.7.2", features = [ "json", "postgres", "runtime-tokio-rustls" ] } tokio = { version = "1.33.0", features = ["full"] }