Skip to content

Commit e069231

Browse files
zertoshfacebook-github-bot
authored andcommitted
Update and pin anyhow to 1.0.72
Summary: anyhow-1.0.73 [uses][1] the new `Error::provide` API. This API is available starting in Rust 1.73. This means that if you want backtraces, you need one: - anyhow-1.0.72 & Rust 1.72 - anyhow-1.0.73 & Rust 1.73 Since we're still on 1.72, pin the version to avoid accidentally losing backtraces. There are no real changes between anyhow-1.0.71 and anyhow-1.0.72. But update to anyhow-1.0.72 so that we're right up until the point where we get backtrace support. [1]: dtolnay/anyhow#319 Reviewed By: shayne-fletcher Differential Revision: D49970958 fbshipit-source-id: 1193611e6d16bc840e63b689e932ea3d33562152
1 parent 8dbd96b commit e069231

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

detcore-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.0.0"
66
edition = "2021"
77

88
[dependencies]
9-
anyhow = "1.0.71"
9+
anyhow = "=1.0.72"
1010
bitvec = { version = "0.17", features = ["serde"] }
1111
bytesize = "1.1"
1212
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }

detcore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ name = "tests_time"
2626
path = "tests/time/mod.rs"
2727

2828
[dependencies]
29-
anyhow = "1.0.71"
29+
anyhow = "=1.0.72"
3030
async-trait = "0.1.71"
3131
bitflags = "1.3"
3232
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }

hermit-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.0.0"
66
edition = "2021"
77

88
[dependencies]
9-
anyhow = "1.0.71"
9+
anyhow = "=1.0.72"
1010
bincode = "1.3.3"
1111
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
1212
colored = "1.9"

hermit-verify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.0.0"
66
edition = "2021"
77

88
[dependencies]
9-
anyhow = "1.0.71"
9+
anyhow = "=1.0.72"
1010
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
1111
colored = "1.9"
1212
detcore = { version = "0.0.0", path = "../detcore" }

0 commit comments

Comments
 (0)