additional adjustments

This commit is contained in:
Conrado Gouvea 2024-08-08 11:35:04 -03:00
parent c23a322a5c
commit 98e48b4953
2 changed files with 4 additions and 3 deletions

1
Cargo.lock generated
View File

@ -409,6 +409,7 @@ dependencies = [
"serde",
"serde_json",
"serdect",
"thiserror",
"thiserror-nostd-notrait",
"visibility",
"zeroize",

View File

@ -31,7 +31,7 @@ pasta_curves = { version = "0.5", default-features = false }
rand_core = { version = "0.6", default-features = false }
serde = { version = "1", optional = true, features = ["derive"] }
thiserror = { version = "1.0", optional = true }
frost-rerandomized = { version = "2.0.0-rc.0", optional = true }
frost-rerandomized = { version = "2.0.0-rc.0", optional = true, default-features = false }
[dependencies.zeroize]
version = "1"
@ -59,11 +59,11 @@ default-features = false
features = ["alloc"]
[features]
std = ["blake2b_simd/std", "thiserror", "zeroize", "alloc",
std = ["blake2b_simd/std", "thiserror", "zeroize", "alloc", "frost-rerandomized?/std",
"serde"] # conditional compilation for serde not complete (issue #9)
alloc = ["hex"]
nightly = []
frost = ["frost-rerandomized"]
frost = ["frost-rerandomized", "alloc"]
serde = ["dep:serde", "frost-rerandomized?/serde"]
default = ["std"]