Skip to content

Commit 890bb93

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 74d1642 commit 890bb93

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

experimental/reverie-host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
license = "BSD-2-Clause"
99

1010
[dependencies]
11-
anyhow = "1.0.71"
11+
anyhow = "=1.0.72"
1212
dirs = "2.0"
1313
reverie-process = { version = "0.1.0", path = "../../reverie-process" }
1414
reverie-rpc = { version = "0.1.0", path = "../reverie-rpc" }

experimental/riptrace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
license = "BSD-2-Clause"
99

1010
[dependencies]
11-
anyhow = "1.0.71"
11+
anyhow = "=1.0.72"
1212
async-trait = "0.1.71"
1313
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
1414
colored = "1.9"

reverie-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ name = "strace_minimal"
4545
path = "strace_minimal.rs"
4646

4747
[dependencies]
48-
anyhow = "1.0.71"
48+
anyhow = "=1.0.72"
4949
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
5050
reverie = { version = "0.1.0", path = "../reverie" }
5151
reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" }

reverie-ptrace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
license = "BSD-2-Clause"
99

1010
[dependencies]
11-
anyhow = "1.0.71"
11+
anyhow = "=1.0.72"
1212
async-trait = "0.1.71"
1313
bincode = "1.3.3"
1414
bytes = { version = "1.1", features = ["serde"] }

reverie-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
license = "BSD-2-Clause"
99

1010
[dependencies]
11-
anyhow = "1.0.71"
11+
anyhow = "=1.0.72"
1212
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
1313
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
1414
reverie = { version = "0.1.0", path = "../reverie" }

reverie/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "BSD-2-Clause"
99

1010
[dependencies]
1111
addr2line = "0.18"
12-
anyhow = "1.0.71"
12+
anyhow = "=1.0.72"
1313
async-trait = "0.1.71"
1414
bitflags = "1.3"
1515
byteorder = "1.3"

0 commit comments

Comments
 (0)