additional adjustments
This commit is contained in:
parent
c23a322a5c
commit
98e48b4953
|
@ -409,6 +409,7 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_json",
|
||||
"serdect",
|
||||
"thiserror",
|
||||
"thiserror-nostd-notrait",
|
||||
"visibility",
|
||||
"zeroize",
|
||||
|
|
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue