Skip to content

Commit

Permalink
chore: Bump vise & release rc.9 (#179)
Browse files Browse the repository at this point in the history
## What ❔

`vise` 0.1.0 has compilation issues on modern nightly because of
`linkme` crates, so the new version was migrated to use `ctor` instead.

## Why ❔

Unblock the path to using modern nightly Rust.
  • Loading branch information
popzxc committed Aug 7, 2024
1 parent d74da18 commit 635d3b7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 53 deletions.
68 changes: 29 additions & 39 deletions node/Cargo.lock

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

28 changes: 14 additions & 14 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ homepage = "https://matter-labs.io/"
repository = "https://github.com/matter-labs/era-consensus"
license = "MIT OR Apache-2.0"
keywords = ["blockchain", "zksync"]
version = "0.1.0-rc.8"
version = "0.1.0-rc.9"

[workspace.dependencies]
# Crates from this repo.
zksync_consensus_bft = { version = "=0.1.0-rc.8", path = "actors/bft" }
zksync_consensus_crypto = { version = "=0.1.0-rc.8", path = "libs/crypto" }
zksync_consensus_executor = { version = "=0.1.0-rc.8", path = "actors/executor" }
zksync_consensus_network = { version = "=0.1.0-rc.8", path = "actors/network" }
zksync_consensus_roles = { version = "=0.1.0-rc.8", path = "libs/roles" }
zksync_consensus_storage = { version = "=0.1.0-rc.8", path = "libs/storage" }
zksync_consensus_tools = { version = "=0.1.0-rc.8", path = "tools" }
zksync_consensus_utils = { version = "=0.1.0-rc.8", path = "libs/utils" }
zksync_consensus_bft = { version = "=0.1.0-rc.9", path = "actors/bft" }
zksync_consensus_crypto = { version = "=0.1.0-rc.9", path = "libs/crypto" }
zksync_consensus_executor = { version = "=0.1.0-rc.9", path = "actors/executor" }
zksync_consensus_network = { version = "=0.1.0-rc.9", path = "actors/network" }
zksync_consensus_roles = { version = "=0.1.0-rc.9", path = "libs/roles" }
zksync_consensus_storage = { version = "=0.1.0-rc.9", path = "libs/storage" }
zksync_consensus_tools = { version = "=0.1.0-rc.9", path = "tools" }
zksync_consensus_utils = { version = "=0.1.0-rc.9", path = "libs/utils" }

# Crates from this repo that might become independent in the future.
zksync_concurrency = { version = "=0.1.0-rc.8", path = "libs/concurrency" }
zksync_protobuf = { version = "=0.1.0-rc.8", path = "libs/protobuf" }
zksync_protobuf_build = { version = "=0.1.0-rc.8", path = "libs/protobuf_build" }
zksync_concurrency = { version = "=0.1.0-rc.9", path = "libs/concurrency" }
zksync_protobuf = { version = "=0.1.0-rc.9", path = "libs/protobuf" }
zksync_protobuf_build = { version = "=0.1.0-rc.9", path = "libs/protobuf_build" }

# Crates from Matter Labs.
pairing = { package = "pairing_ce", version = "=0.28.6" }
vise = "0.1.0"
vise-exporter = "0.1.0"
vise = "0.2.0"
vise-exporter = "0.2.0"

# Crates from third-parties.
anyhow = "1"
Expand Down

0 comments on commit 635d3b7

Please sign in to comment.