change portable to default

This commit is contained in:
Dan Cline 2024-02-03 13:02:45 -05:00
parent 684a896a4c
commit 8ac5c35876
1 changed files with 1 additions and 6 deletions

View File

@ -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 }