Skip to content

Commit

Permalink
Codify subtle >=2.5.0 (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray authored Aug 19, 2024
1 parent 7157789 commit e043452
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cryptography/bls12_381/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ ff = "0.13.0"
group = "0.13"
pairing = { version = "0.23" }

# Transitively, we depend on subtle version >=2.5.0
# Adding the restrictions here codify it in rust-eth-kzg.
#
# See https://github.com/crate-crypto/rust-eth-kzg/issues/235 for more info
# as to why we need to pull it in here, even though it is not used directly.
subtle = { version = ">=2.5.0, <3.0" }

[dev-dependencies]
criterion = "0.5.1"
rand = "0.8.4"
Expand Down

0 comments on commit e043452

Please sign in to comment.