diff --git a/Cargo.lock b/Cargo.lock index 45c706926..a45eb4d4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2536,9 +2536,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.115" +version = "1.0.116" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" +checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" dependencies = [ "indexmap 2.2.6", "itoa", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index d030a1313..5666c4486 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.82" clap = { version = "4.5.4", features = ["derive", "env"] } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = { version = "1.0.197", features = ["derive"] } -serde_json = { version = "1.0.115", features = ["raw_value"] } +serde_json = { version = "1.0.116", features = ["raw_value"] } serde_yaml = "0.9.34" thiserror = "1.0.58" tokio = { version = "1.37.0", features = ["full"] } diff --git a/crates/configuration/Cargo.toml b/crates/configuration/Cargo.toml index 66437d19a..48530a5fd 100644 --- a/crates/configuration/Cargo.toml +++ b/crates/configuration/Cargo.toml @@ -13,7 +13,7 @@ query-engine-metadata = { path = "../query-engine/metadata" } anyhow = "1.0.82" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.197" -serde_json = { version = "1.0.115", features = ["raw_value"] } +serde_json = { version = "1.0.116", features = ["raw_value"] } sqlx = { version = "0.7.4", features = ["json", "postgres", "runtime-tokio-rustls"] } thiserror = "1.0.58" tokio = "1.37.0" diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 05b1226ea..7fe573a3d 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -29,7 +29,7 @@ ndc-sdk = { workspace = true } async-trait = "0.1.80" percent-encoding = "2.3.1" prometheus = "0.13.3" -serde_json = { version = "1.0.115", features = ["raw_value"] } +serde_json = { version = "1.0.116", features = ["raw_value"] } sqlx = { version = "0.7.4", features = ["json", "postgres", "runtime-tokio-rustls"] } thiserror = "1.0" tokio = { version = "1.37.0", features = ["full"] } diff --git a/crates/documentation/openapi/Cargo.toml b/crates/documentation/openapi/Cargo.toml index fbd154d58..877297663 100644 --- a/crates/documentation/openapi/Cargo.toml +++ b/crates/documentation/openapi/Cargo.toml @@ -18,4 +18,4 @@ path = "src/main.rs" [dependencies] ndc-postgres-configuration = { path = "../../configuration" } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = { version = "1.0.115", features = ["raw_value"] } +serde_json = { version = "1.0.116", features = ["raw_value"] } diff --git a/crates/query-engine/execution/Cargo.toml b/crates/query-engine/execution/Cargo.toml index 6a64d9ac8..4881d1dde 100644 --- a/crates/query-engine/execution/Cargo.toml +++ b/crates/query-engine/execution/Cargo.toml @@ -11,7 +11,7 @@ workspace = true query-engine-sql = { path = "../sql" } prometheus = "0.13.3" -serde_json = "1.0.115" +serde_json = "1.0.116" sqlformat = "0.2.3" sqlx = { version = "0.7.4", features = ["json", "postgres", "runtime-tokio-rustls", "uuid"] } thiserror = "1.0.58" diff --git a/crates/query-engine/sql/Cargo.toml b/crates/query-engine/sql/Cargo.toml index 0e195537c..952236d53 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -10,4 +10,4 @@ workspace = true [dependencies] schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.197" -serde_json = "1.0.115" +serde_json = "1.0.116" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index 515614ae7..79c31b1d5 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -16,7 +16,7 @@ ndc-sdk = { workspace = true } indexmap = "2" multimap = "0.9.1" -serde_json = "1.0.115" +serde_json = "1.0.116" [dev-dependencies] insta = { version = "1.38.0", features = ["json"] } diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index 6831c571c..a4a8abb7d 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -31,6 +31,6 @@ tests-common = { path = "../tests-common" } axum = "0.6.20" insta = { version = "1.38.0", features = ["json"] } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = "1.0.115" +serde_json = "1.0.116" test-each = "0.2.1" tokio = { version = "1.37.0", features = ["full"] } diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index 7f8e76f57..d84d2ce1e 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -27,7 +27,7 @@ jsonschema = { version = "0.17.1", default-features = false, features = ["resolv reqwest = "0.11.27" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.197" -serde_json = { version = "1.0.115", features = ["raw_value"] } +serde_json = { version = "1.0.116", features = ["raw_value"] } similar-asserts = "1.5.0" sqlx = { version = "0.7.4", features = [ "json", "postgres", "runtime-tokio-rustls" ] } tokio = { version = "1.37.0", features = ["full"] }