From 8ae5b6167462b922be6d836e9a3327f6874cfd80 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Wed, 11 Dec 2024 14:10:42 -0600 Subject: [PATCH] roaring: pin to 0.10.6 to work around no-std breakage Pin the roaring dependency to 0.10.6 in order to work around a breakage with roaring building without the `std` feature enabled. See https://github.com/RoaringBitmap/roaring-rs/issues/304 for more info. --- crates/sui-sdk-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sui-sdk-types/Cargo.toml b/crates/sui-sdk-types/Cargo.toml index 3169bc40b..01105f954 100644 --- a/crates/sui-sdk-types/Cargo.toml +++ b/crates/sui-sdk-types/Cargo.toml @@ -33,7 +33,7 @@ proptest = ["dep:proptest", "dep:test-strategy", "serde"] base64ct = { version = "1.6.0", features = ["alloc"] } bs58 = "0.5.1" hex = "0.4.3" -roaring = { version = "0.10.6", default-features = false } +roaring = { version = "=0.10.6", default-features = false } bnum = "0.12.0" winnow = "0.6.20"