From 3ca948fc77200397d92888a760e2f52945887c18 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 2 Jun 2022 17:05:05 -0700 Subject: [PATCH] third-party/rust: Update async-trait from 0.1.52 to 0.1.56 Summary: Release notes: - https://github.com/dtolnay/async-trait/releases/tag/0.1.53 (improved error messages) - https://github.com/dtolnay/async-trait/releases/tag/0.1.54 (`impl Trait` support) - https://github.com/dtolnay/async-trait/releases/tag/0.1.55 (compatibility with 2021 edition closure capture rules) - https://github.com/dtolnay/async-trait/releases/tag/0.1.56 (more `impl Trait` work) Reviewed By: zertosh Differential Revision: D36881793 fbshipit-source-id: ce9b86693dd18efa6884d29419970b41ebff5447 --- reverie-ptrace/Cargo.toml | 2 +- reverie/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index ddaef7b..09e8cfb 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -9,7 +9,7 @@ license = "BSD-2-Clause" [dependencies] anyhow = "1.0.56" -async-trait = "0.1.52" +async-trait = "0.1.56" bincode = "1.3.3" bitflags = "1.3" bytes = { version = "1.1", features = ["serde"] } diff --git a/reverie/Cargo.toml b/reverie/Cargo.toml index af6dda9..eaec9ba 100644 --- a/reverie/Cargo.toml +++ b/reverie/Cargo.toml @@ -10,7 +10,7 @@ license = "BSD-2-Clause" [dependencies] addr2line = "0.17" anyhow = "1.0.56" -async-trait = "0.1.52" +async-trait = "0.1.56" bitflags = "1.3" bitvec = { version = "0.17", features = ["serde"] } byteorder = "1.3"