Skip to content

Commit

Permalink
deps(iroh-blake3): Upgrade to version fixing more symbol collions (#2246
Browse files Browse the repository at this point in the history
)

## Description

We did get reports of the iroh-blake3 still having symbol collisions
with blake3.  Depend on the new version now.  Hopefully these were the
last of the symbol collisions.

Closes #2217

## Breaking Changes

<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->

## Notes & open questions

<!-- Any notes, remarks or open questions you have to make about the PR.
-->

## Change checklist

- [x] Self-review.
- ~~[ ] Documentation updates if relevant.~~
- ~~[ ] Tests if relevant.~~
- ~~[ ] All breaking changes documented.~~
  • Loading branch information
flub authored Apr 26, 2024
1 parent 297fd1a commit 0c336c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 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 iroh-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true
[dependencies]
# proto dependencies (required)
anyhow = { version = "1" }
blake3 = { package = "iroh-blake3", version = "1.4.3"}
blake3 = { package = "iroh-blake3", version = "1.4.5"}
bytes = { version = "1.4.0", features = ["serde"] }
derive_more = { version = "1.0.0-beta.1", features = ["add", "debug", "deref", "display", "from", "try_into", "into"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
Expand Down
2 changes: 1 addition & 1 deletion iroh-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ workspace = true

[dependencies]
anyhow = "1"
blake3 = { package = "iroh-blake3", version = "1.4.3"}
blake3 = { package = "iroh-blake3", version = "1.4.5"}
derive_more = { version = "1.0.0-beta.1", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
flume = "0.11"
Expand Down

0 comments on commit 0c336c4

Please sign in to comment.