Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade blst back to 0.3.10 #79

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ parameterized by the lifetime of the input byte slice.
- `tezos_crypto_rs`: `PublicKeyWithHash::pk_hash` now returns `Self::Hash`
instead of `Result`.
- `PublicKeySignatureVerifier` now requires the explicitly correct signature kind for the given public key.
- Update `blst` dependency to `0.3.12` to improve RISC-V compatibility.
- Update `num-bigint` dependency to `0.4` to improve WASM compatibility.
- Minimum supported rust version bumped to `1.64`.
- `tezos_crypto_rs` now depends on `tezos_data_encoding`, rather than vice-versa.
Expand Down
22 changes: 20 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ strum_macros = "0.20"
zeroize = { version = "1.5" }
ed25519-dalek = { version = "2.0.0", default-features = false }
cryptoxide = { version = "0.4.4", default-features = false, features = ["sha2", "blake2"] }
blst = { version = "0.3.12", optional = true }
blst = { version = "=0.3.10", optional = true }

proptest = { version = "1.1", optional = true }

Expand Down
Loading