Skip to content

Commit

Permalink
Merge pull request #70 from trilitech/emturner@bump-num-bigint
Browse files Browse the repository at this point in the history
deps: upgrade num-bigint
  • Loading branch information
emturner authored Jun 25, 2024
2 parents 51f402b + 0123171 commit 3eaf501
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ 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 `blst` dependency to `0.3.12` to improve RISC-V compatibility.
- Update `num-bigint` dependency to `0.4` to improve WASM compatibility.

### Deprecated

Expand Down
16 changes: 7 additions & 9 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 @@ -17,7 +17,7 @@ thiserror = "1.0"
hex = "0.4"
libsecp256k1 = { version = "0.7", default-features = false, features = ["static-context"] }
byteorder = "1.4.3"
num-bigint = { version = "0.3", features = ["serde"] }
num-bigint = { version = "0.4", default-features = false, features = ["serde"] }
num-traits = "0.2.8"
p256 = { version = "0.9", default-features = false, features = ["ecdsa"] }
rand = { version = "0.7.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion tezos-encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository = "https://github.com/trilitech/tezedge.git"
bit-vec = "0.6.2"
thiserror = "1.0"
hex = "0.4"
num-bigint = "0.3"
num-bigint = { version = "0.4", default-features = false }
num-traits = "0.2.8"
serde = { version = "1.0", features = ["derive"] }
nom = "7.1"
Expand Down

0 comments on commit 3eaf501

Please sign in to comment.