diff --git a/Cargo.lock b/Cargo.lock index 5a8528f52a3d..ff1a72c2ad5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1843,6 +1843,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + [[package]] name = "hermit-abi" version = "0.1.19" @@ -2221,7 +2227,7 @@ name = "json-rpc-api-build" version = "0.1.0" dependencies = [ "backtrace", - "heck 0.3.3", + "heck 0.5.0", "serde", "toml 0.5.11", ] diff --git a/schema-engine/json-rpc-api-build/Cargo.toml b/schema-engine/json-rpc-api-build/Cargo.toml index d22e8188d313..3f7edf7cf9bc 100644 --- a/schema-engine/json-rpc-api-build/Cargo.toml +++ b/schema-engine/json-rpc-api-build/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] backtrace = "0.3" -heck = "0.3.3" +heck = "0.5" serde.workspace = true toml = "0.5"