From 9a1320bb464cc1884d2d53c4b8208eac31b33871 Mon Sep 17 00:00:00 2001 From: Astrid Yu Date: Fri, 5 Apr 2024 23:49:22 -0700 Subject: [PATCH] third-party/rust: Bump bytes 1.1 -> 1.6.0 Summary: As it says on the tin. There have been many new features added since the old version. [Staring at the changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md), I don't believe they added breaking changes. Changes to other libraries: - *common/rust/folly/iobuf* - the panic message changed so I changed the should_panic rule to match Reviewed By: diliop Differential Revision: D55807882 fbshipit-source-id: 8d70a8bae57509fdca82ab18770275111a1f1902 --- reverie-ptrace/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index f12ebc0..de99aa9 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -12,7 +12,7 @@ license = "BSD-2-Clause" anyhow = "1.0.75" async-trait = "0.1.71" bincode = "1.3.3" -bytes = { version = "1.1", features = ["serde"] } +bytes = { version = "1.6.0", features = ["serde"] } futures = { version = "0.3.30", features = ["async-await", "compat"] } goblin = "0.5.2" iced-x86 = "1.17.0"