From 84cdd9e45fd84bc1fac0b394c899ae33aef91afa Mon Sep 17 00:00:00 2001 From: Alex Ostrovski Date: Thu, 21 Dec 2023 16:39:44 +0200 Subject: [PATCH] chore: Update `vise` revision (#54) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Bumps the git revision of `vise` crates. ## Why ❔ Necessary for [the similar PR in the main repo](https://github.com/matter-labs/zksync-era/pull/727) to work correctly. --- node/Cargo.lock | 12 +++++++++--- node/Cargo.toml | 4 ++-- node/deny.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/node/Cargo.lock b/node/Cargo.lock index c3f31767..346c19ad 100644 --- a/node/Cargo.lock +++ b/node/Cargo.lock @@ -434,6 +434,11 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +[[package]] +name = "compile-fmt" +version = "0.1.0" +source = "git+https://github.com/slowli/compile-fmt.git?rev=c6a41c846c9a6f70cdba4b44c9f3922242ffcf12#c6a41c846c9a6f70cdba4b44c9f3922242ffcf12" + [[package]] name = "const-oid" version = "0.9.5" @@ -2319,8 +2324,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vise" version = "0.1.0" -source = "git+https://github.com/matter-labs/vise.git?rev=dd05139b76ab0843443ab3ff730174942c825dae#dd05139b76ab0843443ab3ff730174942c825dae" +source = "git+https://github.com/matter-labs/vise.git?rev=1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1#1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1" dependencies = [ + "compile-fmt", "elsa", "linkme", "once_cell", @@ -2331,7 +2337,7 @@ dependencies = [ [[package]] name = "vise-exporter" version = "0.1.0" -source = "git+https://github.com/matter-labs/vise.git?rev=dd05139b76ab0843443ab3ff730174942c825dae#dd05139b76ab0843443ab3ff730174942c825dae" +source = "git+https://github.com/matter-labs/vise.git?rev=1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1#1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1" dependencies = [ "hyper", "once_cell", @@ -2343,7 +2349,7 @@ dependencies = [ [[package]] name = "vise-macros" version = "0.1.0" -source = "git+https://github.com/matter-labs/vise.git?rev=dd05139b76ab0843443ab3ff730174942c825dae#dd05139b76ab0843443ab3ff730174942c825dae" +source = "git+https://github.com/matter-labs/vise.git?rev=1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1#1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1" dependencies = [ "proc-macro2", "quote", diff --git a/node/Cargo.toml b/node/Cargo.toml index 484a559f..9d7a65a3 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -40,8 +40,8 @@ zksync_protobuf_build = { path = "libs/protobuf_build" } # Crates from Matter Labs. pairing = { package = "pairing_ce", git = "https://github.com/matter-labs/pairing.git", rev = "f55393fd366596eac792d78525d26e9c4d6ed1ca" } -vise = { version = "0.1.0", git = "https://github.com/matter-labs/vise.git", rev = "dd05139b76ab0843443ab3ff730174942c825dae" } -vise-exporter = { version = "0.1.0", git = "https://github.com/matter-labs/vise.git", rev = "dd05139b76ab0843443ab3ff730174942c825dae" } +vise = { version = "0.1.0", git = "https://github.com/matter-labs/vise.git", rev = "1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1" } +vise-exporter = { version = "0.1.0", git = "https://github.com/matter-labs/vise.git", rev = "1c9cc500e92cf9ea052b230e114a6f9cce4fb2c1" } # Crates from third-parties. anyhow = "1" diff --git a/node/deny.toml b/node/deny.toml index ea2300b2..fd63501a 100644 --- a/node/deny.toml +++ b/node/deny.toml @@ -66,4 +66,4 @@ skip = [ [sources] unknown-registry = "deny" unknown-git = "deny" -allow-org = { github = ["matter-labs"] } +allow-org = { github = ["matter-labs", "slowli"] } # TODO: remove once `vise` is published