From 2988f96264bc5e98af6b4848901fc8c7239b2e14 Mon Sep 17 00:00:00 2001 From: ivila <390810839@qq.com> Date: Thu, 14 Nov 2024 14:17:35 +0800 Subject: [PATCH] optee-utee: do not lock the version of bitflags crate Unlock the version of bitflags in optee-utee to avoid confliction when using optee-utee with some other crates(like cpuid). Signed-off-by: ivila <390810839@qq.com> Reviewed-by: Sumit Garg --- optee-utee/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optee-utee/Cargo.toml b/optee-utee/Cargo.toml index 2324ecf9..d0d29772 100644 --- a/optee-utee/Cargo.toml +++ b/optee-utee/Cargo.toml @@ -27,7 +27,7 @@ edition = "2018" [dependencies] optee-utee-sys = { path = "optee-utee-sys" } optee-utee-macros = { path = "macros" } -bitflags = "=1.0.4" +bitflags = "1.0.4" uuid = { version = "0.8", default-features = false } hex = { version = "0.4", default-features = false, features = ["alloc"] } libc_alloc = "=1.0.5"