Skip to content

Commit

Permalink
Merge branch 'main' into dp-no-side-effects-in-getters
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdplm committed Mar 28, 2024
2 parents 5b118d3 + 562b64e commit b011285
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,24 @@ ark-ff = { version = "0.4", default-features = false }
ark-ec = { version = "0.4", default-features = false }
ark-serialize = { version = "0.4", default-features = false, features = ["derive"] }
digest = { version = "0.10", default-features = false, features = ["alloc"] }
getrandom = { version = "0.2", default-features = false, features = ["js"] }
rand = { version = "0.8", default-features = false, features = ["alloc", "getrandom", "libc"] }
sha2 = { version = "0.10", default-features = false }
aes-gcm = { version = "0.10", default-features = false, features = ["aes", "alloc", "getrandom", "zeroize"] }
hkdf = { version = "0.12", default-features = false }
zeroize = { version = "1", default-features = false, features = ["alloc", "zeroize_derive"] }

# Include the "js" feature for wasm32-unknown-unknown
[target.'cfg(target_family = "wasm")'.dependencies.getrandom]
version = "0.2"
default-features = false
features = ["js"]

[target.'cfg(not(target_family = "wasm"))'.dependencies.getrandom]
version = "0.2.0"
default-features = false

[dev-dependencies]
criterion = { version = "0.3" }
criterion = { version = "0.5" }

[[bench]]
name = "dkg"
Expand Down

0 comments on commit b011285

Please sign in to comment.