Skip to content

Commit 07d5e3e

Browse files
KapJIfacebook-github-bot
authored andcommitted
update rust toolchain
Summary: It includes this fix which was backported to 1.62.1. rust-lang/rust#98950 `2022-08-06` is what will become 1.64.0. Changes are caused by: - Split TypeVisitable from TypeFoldable: rust-lang/rust#98206 - Remove `fn backtrace` and replace with usages of provider API: rust-lang/rust#99431 Reviewed By: stepancheg Differential Revision: D39277984 fbshipit-source-id: 5afc6c2b9e5ee3074ea0ede995868aef12cebf14
1 parent c4dbc53 commit 07d5e3e

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

buck2_common/src/result.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ impl std::error::Error for SharedError {
6868
self.0.source()
6969
}
7070

71-
fn backtrace(&self) -> Option<&std::backtrace::Backtrace> {
72-
Some(self.0.backtrace())
73-
}
74-
7571
fn cause(&self) -> Option<&dyn std::error::Error> {
7672
#[allow(deprecated)]
7773
self.0.cause()

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2022-06-25"
2+
channel = "nightly-2022-08-06"
33
components = ["llvm-tools-preview","rustc-dev"]

0 commit comments

Comments
 (0)