From 7be03d1815edb706c647407ade4b90f38241b050 Mon Sep 17 00:00:00 2001 From: auronandace Date: Fri, 20 Mar 2026 08:46:28 +0000 Subject: [PATCH] add bitflags to the workspace Cargo.toml --- Cargo.toml | 1 + drivers/audio/ihdad/Cargo.toml | 2 +- drivers/audio/sb16d/Cargo.toml | 2 +- drivers/input/usbhidd/Cargo.toml | 2 +- drivers/net/e1000d/Cargo.toml | 2 +- drivers/net/ixgbed/Cargo.toml | 2 +- drivers/net/rtl8139d/Cargo.toml | 2 +- drivers/net/rtl8168d/Cargo.toml | 2 +- drivers/storage/nvmed/Cargo.toml | 2 +- drivers/virtio-core/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1199d7a51e..092776fa71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,6 +74,7 @@ exclude = ["bootstrap"] # Remember to also update bootstrap dependencies, those are not in the workspace [workspace.dependencies] anyhow = "1" +bitflags = "2" drm = "0.14.2" drm-sys = "0.8.1" libc = "0.2.181" diff --git a/drivers/audio/ihdad/Cargo.toml b/drivers/audio/ihdad/Cargo.toml index 999e808f13..1f61c71381 100644 --- a/drivers/audio/ihdad/Cargo.toml +++ b/drivers/audio/ihdad/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2021" [dependencies] -bitflags = "2" +bitflags.workspace = true libredox.workspace = true log.workspace = true redox_event.workspace = true diff --git a/drivers/audio/sb16d/Cargo.toml b/drivers/audio/sb16d/Cargo.toml index d4fcf93280..a330a783cf 100644 --- a/drivers/audio/sb16d/Cargo.toml +++ b/drivers/audio/sb16d/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2021" [dependencies] -bitflags = "2" +bitflags.workspace = true common = { path = "../../common" } libredox.workspace = true log.workspace = true diff --git a/drivers/input/usbhidd/Cargo.toml b/drivers/input/usbhidd/Cargo.toml index 32b73dded4..2c0cda1915 100644 --- a/drivers/input/usbhidd/Cargo.toml +++ b/drivers/input/usbhidd/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" [dependencies] anyhow.workspace = true -bitflags = "2" +bitflags.workspace = true log.workspace = true orbclient.workspace = true redox_syscall.workspace = true diff --git a/drivers/net/e1000d/Cargo.toml b/drivers/net/e1000d/Cargo.toml index 15cf02ebc2..43ef78f4de 100644 --- a/drivers/net/e1000d/Cargo.toml +++ b/drivers/net/e1000d/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2018" [dependencies] -bitflags = "2" +bitflags.workspace = true log.workspace = true libredox.workspace = true redox_event.workspace = true diff --git a/drivers/net/ixgbed/Cargo.toml b/drivers/net/ixgbed/Cargo.toml index f548c28b2d..d97ff39874 100644 --- a/drivers/net/ixgbed/Cargo.toml +++ b/drivers/net/ixgbed/Cargo.toml @@ -5,7 +5,7 @@ version = "1.0.0" edition = "2021" [dependencies] -bitflags = "2" +bitflags.workspace = true libredox.workspace = true redox_event.workspace = true redox_syscall.workspace = true diff --git a/drivers/net/rtl8139d/Cargo.toml b/drivers/net/rtl8139d/Cargo.toml index d39b106cd0..8686242a89 100644 --- a/drivers/net/rtl8139d/Cargo.toml +++ b/drivers/net/rtl8139d/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2018" [dependencies] -bitflags = "2" +bitflags.workspace = true libredox.workspace = true log.workspace = true redox_event.workspace = true diff --git a/drivers/net/rtl8168d/Cargo.toml b/drivers/net/rtl8168d/Cargo.toml index 7726db364b..35975ed241 100644 --- a/drivers/net/rtl8168d/Cargo.toml +++ b/drivers/net/rtl8168d/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2018" [dependencies] -bitflags = "2" +bitflags.workspace = true libredox.workspace = true log.workspace = true redox_event.workspace = true diff --git a/drivers/storage/nvmed/Cargo.toml b/drivers/storage/nvmed/Cargo.toml index 61cdad99a5..9447368835 100644 --- a/drivers/storage/nvmed/Cargo.toml +++ b/drivers/storage/nvmed/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] arrayvec = "0.7" -bitflags = "2" +bitflags.workspace = true futures = "0.3" libredox.workspace = true log.workspace = true diff --git a/drivers/virtio-core/Cargo.toml b/drivers/virtio-core/Cargo.toml index 306091c488..27b9da0481 100644 --- a/drivers/virtio-core/Cargo.toml +++ b/drivers/virtio-core/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Anhad Singh "] [dependencies] static_assertions = "1.1.0" -bitflags = "2.3.2" +bitflags.workspace = true redox_syscall.workspace = true libredox.workspace = true log.workspace = true