Skip to content

Commit

Permalink
Merge pull request #40 from Pilou97/pilou@dev
Browse files Browse the repository at this point in the history
crypto: fix the version of blst to 0.3.10
  • Loading branch information
emturner authored Sep 6, 2023
2 parents 5df8154 + 0e91201 commit a3379dc
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 35 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Nothing.

## [0.5.1] - 2023-09-01

### Added

- Nothing.

### Changed

- Fixed the version of `blst` to 0.3.10
- Set the version of `ed25519-dalek` to 2.0.0

## [0.5.0] - 2023-05-12

### Added
Expand Down
66 changes: 39 additions & 27 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 crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_crypto_rs"
version = "0.5.0"
version = "0.5.1"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -25,9 +25,9 @@ serde = { version = "1.0", features = ["derive"] }
strum = "0.20"
strum_macros = "0.20"
zeroize = { version = "1.5" }
ed25519-dalek = { version = "2.0.0-rc.2", default-features = false }
ed25519-dalek = { version = "2.0.0", default-features = false }
cryptoxide = { version = "0.4.4", default-features = false, features = ["sha2", "blake2"] }
blst = "0.3.10"
blst = "=0.3.10"

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

Expand Down
4 changes: 2 additions & 2 deletions tezos-encoding-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding_derive"
version = "0.5.0"
version = "0.5.1"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -22,4 +22,4 @@ parse-display = "0.4.1"
once_cell = "1.9.0"

[features]
fuzzing = []
fuzzing = []
6 changes: 3 additions & 3 deletions tezos-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding"
version = "0.5.0"
version = "0.5.1"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -23,12 +23,12 @@ lazy_static = "1.4"

[dependencies.tezos_crypto_rs]
path = "../crypto"
version = "0.5.0"
version = "0.5.1"
default-features = false

[dependencies.tezos_data_encoding_derive]
path = "../tezos-encoding-derive"
version = "0.5.0"
version = "0.5.1"

[features]

Expand Down

0 comments on commit a3379dc

Please sign in to comment.