From bea3a0c7e22819fcc2c4ff4f9f917fb8cfc017e0 Mon Sep 17 00:00:00 2001 From: Abdulrahim Al Methiab Date: Mon, 19 Feb 2024 10:31:32 +0100 Subject: [PATCH] Fix compilation error caused by the `roaring` crate --- identity_credential/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/identity_credential/Cargo.toml b/identity_credential/Cargo.toml index 491158c1f1..4789aeeb60 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -22,7 +22,7 @@ indexmap = { version = "2.0", default-features = false, features = ["std", "serd itertools = { version = "0.11", default-features = false, features = ["use_std"], optional = true } once_cell = { version = "1.18", default-features = false, features = ["std"] } reqwest = { version = "0.11", default-features = false, features = ["default-tls", "json", "stream"], optional = true } -roaring = { version = "0.10", default-features = false, optional = true } +roaring = { version = "0.10", default-features = false, features = ["std"], optional = true } sd-jwt-payload = { version = "0.2.0", default-features = false, features = ["sha"], optional = true } serde.workspace = true serde-aux = { version = "4.3.1", default-features = false, optional = true }