From 943374de255c239bae3cd68214101020677da6fb Mon Sep 17 00:00:00 2001 From: Casper Meijn Date: Mon, 1 Apr 2024 15:44:56 +0200 Subject: [PATCH] build(deps): Allow heck 0.5 (#1012) heck 0.5 didn't change the syntax of any APIs in-use. --- prost-build/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 721a1dff1..6d02cd6f6 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -21,7 +21,7 @@ cleanup-markdown = ["dep:pulldown-cmark", "dep:pulldown-cmark-to-cmark"] [dependencies] bytes = { version = "1", default-features = false } -heck = "0.4" +heck = { version = ">=0.4, <=0.5" } itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] } log = "0.4.4" multimap = { version = "0.8", default-features = false }