From c8248abe14a4c77fbbc5d815d2d04ce5ed34aa99 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Fri, 30 Aug 2024 14:28:52 -0700 Subject: [PATCH] Upgrade bitflags Summary: I need these newer versions in a package I want. Upgrade them so instead of having two copies floating around the repo (one we use, one as a dependency), we only have one. Reviewed By: zertosh Differential Revision: D62025056 fbshipit-source-id: 452d440cfa3b22f57f113568774c39fcb2fe2446 --- detcore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detcore/Cargo.toml b/detcore/Cargo.toml index 268030c..d99a56b 100644 --- a/detcore/Cargo.toml +++ b/detcore/Cargo.toml @@ -26,7 +26,7 @@ path = "tests/time/mod.rs" [dependencies] anyhow = "1.0.86" async-trait = "0.1.71" -bitflags = { version = "2.4", features = ["serde"] } +bitflags = { version = "2.6", features = ["serde"] } chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false } clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } detcore-model = { version = "0.0.0", path = "../detcore-model" }