Skip to content

Commit dcccee6

Browse files
hovinenbcopybara-github
authored andcommitted
Change the anyhow dependency to support any version in the 1.x series.
Previously, the dependency was locked to 1.0.70 and above, which meant that a downstream library using the anyhow feature would only work if they used that version or a later one in the 1.x series. This is not actually necessary with the use of anyhow in this library. This change relaxes the requirement to accept any version of anyhow with major version 1. PiperOrigin-RevId: 524816843
1 parent a3e3372 commit dcccee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

googletest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ doctest = false
3737
googletest_macro = { path = "../googletest_macro", version = "0.4.2" }
3838
num-traits = "0.2.15"
3939
regex = "1.6.0"
40-
anyhow = { version = "1.0.70", optional = true }
40+
anyhow = { version = "1", optional = true }
4141
indoc = { version = "2", optional = true }
4242
rstest = { version = "0.17.0", optional = true }
4343
tokio = { version = "1", optional = true, features = ["time", "macros", "rt"] }

0 commit comments

Comments
 (0)