diff --git a/Cargo.lock b/Cargo.lock index fd620df6..e4b14a5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2409,9 +2409,9 @@ dependencies = [ [[package]] name = "schemars" -version = "0.8.17" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f55c82c700538496bdc329bb4918a81f87cc8888811bd123cf325a0f2f8d309" +checksum = "fc6e7ed6919cb46507fb01ff1654309219f62b4d603822501b0b80d42f6f21ef" dependencies = [ "dyn-clone", "indexmap 1.9.3", @@ -2424,9 +2424,9 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.17" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83263746fe5e32097f06356968a077f96089739c927a61450efa069905eec108" +checksum = "185f2b7aa7e02d418e453790dde16890256bbd2bcd04b7dc5348811052b53f49" dependencies = [ "proc-macro2", "quote", diff --git a/crates/configuration/Cargo.toml b/crates/configuration/Cargo.toml index 9e8b7fda..b6dab9d8 100644 --- a/crates/configuration/Cargo.toml +++ b/crates/configuration/Cargo.toml @@ -11,7 +11,7 @@ workspace = true query-engine-metadata = { path = "../query-engine/metadata" } anyhow = "1.0.82" -schemars = { version = "0.8.17", features = ["smol_str", "preserve_order"] } +schemars = { version = "0.8.19", features = ["smol_str", "preserve_order"] } serde = "1.0.200" serde_json = { version = "1.0.116", features = ["raw_value"] } sqlx = { version = "0.7.4", features = ["json", "postgres", "runtime-tokio-rustls"] } diff --git a/crates/query-engine/sql/Cargo.toml b/crates/query-engine/sql/Cargo.toml index 030cc72c..808114fb 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -8,6 +8,6 @@ license.workspace = true workspace = true [dependencies] -schemars = { version = "0.8.17", features = ["smol_str", "preserve_order"] } +schemars = { version = "0.8.19", features = ["smol_str", "preserve_order"] } serde = "1.0.200" serde_json = "1.0.116"