diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index aaa127e..a6f4a4a 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -8,7 +8,7 @@ links = "ckzg" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["std"] +default = ["std", "blst/portable"] std = ["hex/std", "libc/std", "serde?/std"] serde = ["dep:serde"] @@ -17,11 +17,6 @@ serde = ["dep:serde"] # Engaged on wasm32 target architecture automatically. no-threads = ["blst/no-threads"] -# BLST Compilation: -# Compile in portable mode, without ISA extensions. -# Binary can be executed on all systems. -portable = ["blst/portable"] - [dependencies] hex = { version = "0.4.2", default-features = false, features = ["alloc"] } libc = { version = "0.2", default-features = false }