Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit a653fcd

Browse files
authored
Fix for anynow causing semver-breakage
The `anyhow` crate intentionally breaks semver rules, and adds new features in "patch" releases. This crate uses `ensure` macro that has been added in a version after 1.0.0.
1 parent 0886aef commit a653fcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exclude = [
2020
[dependencies]
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde_json = "1.0"
23-
anyhow = "1.0.0"
23+
anyhow = "1.0.6"
2424
log = "0.4.1"
2525

2626
[dev-dependencies]

0 commit comments

Comments
 (0)