From a91a376abee0817f794e171968d2a5d92d669231 Mon Sep 17 00:00:00 2001 From: Govinda Kamath Date: Mon, 17 Jun 2024 12:48:30 -0700 Subject: [PATCH] build(deps): Depend on heck >=0.4, <0.6 (#508) Change the dependency on heck from 0.5 to >=0.4, <0.6. --- cargo-martian/Cargo.toml | 2 +- martian/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cargo-martian/Cargo.toml b/cargo-martian/Cargo.toml index 50c2641868..8815331e78 100644 --- a/cargo-martian/Cargo.toml +++ b/cargo-martian/Cargo.toml @@ -12,4 +12,4 @@ docopt = "1.0" serde = { version = "1.0", features = ['derive'] } serde_json = "1.0" strfmt = ">=0.1.6, <0.3" -heck = "0.5" +heck = ">=0.4, <0.6" diff --git a/martian/Cargo.toml b/martian/Cargo.toml index 88c80e9b99..f64da3172b 100644 --- a/martian/Cargo.toml +++ b/martian/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" anyhow = { version = "1", features = ["backtrace"] } backtrace = "0.3" fern = ">=0.5, <0.7" -heck = "0.5" +heck = ">=0.4, <0.6" log = "0.4" rayon = { version = "1", optional = true } rustc_version = ">=0.3, <0.5"