From 23a76b6dbcdcf00f08b02a49c43037fd9e132329 Mon Sep 17 00:00:00 2001 From: Maximilien Cura <70043540+max-cura@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:19:47 -0800 Subject: [PATCH] Add `default-features = false` to Cargo.toml so that no_std usage is possible --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 402faa7..6852143 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ rust-version = "1.79" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -crossbeam-utils = "0.8.4" +crossbeam-utils = { version = "0.8.4", default-features = false } [profile.release] codegen-units = 1