From f0fa2707cb88a98fadae6c15d3b022fd7792c7ac Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Mon, 30 Sep 2024 09:33:49 -0700 Subject: [PATCH] Attempt to fix Rust CI by undoing what appears to have broken it: https://github.com/google/flatbuffers/pull/8372 --- rust/flatbuffers/Cargo.toml | 2 +- rust/flexbuffers/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/flatbuffers/Cargo.toml b/rust/flatbuffers/Cargo.toml index 5f154c55edd..306e6c4ce4f 100644 --- a/rust/flatbuffers/Cargo.toml +++ b/rust/flatbuffers/Cargo.toml @@ -17,7 +17,7 @@ std = [] serialize = ["serde"] [dependencies] -bitflags = "2.6.0" +bitflags = "1.2.1" serde = { version = "1.0", optional = true } [build-dependencies] diff --git a/rust/flexbuffers/Cargo.toml b/rust/flexbuffers/Cargo.toml index 0c00e124c01..b3544676be0 100644 --- a/rust/flexbuffers/Cargo.toml +++ b/rust/flexbuffers/Cargo.toml @@ -24,5 +24,5 @@ deserialize_human_readable = [] serde = "1.0.119" serde_derive = "1.0.119" byteorder = "1.4.2" -num_enum = "0.7.3" -bitflags = "2.6.0" +num_enum = "0.5.1" +bitflags = "1.2.1"