Skip to content

Commit

Permalink
additional adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Aug 8, 2024
1 parent c23a322 commit 98e48b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"]

Expand Down

0 comments on commit 98e48b4

Please sign in to comment.