From 9a2d5f8f5f116f1bfc155e873de61d7aaa8c10dc Mon Sep 17 00:00:00 2001 From: Marvin Jones Date: Wed, 15 Jul 2026 14:24:54 -0400 Subject: [PATCH] fix(deps): finish the v0.2.0 logos-execution-zone bump for integration_tests ff89025 bumped the workspace's nssa/nssa_core to logos-execution-zone v0.2.0 but missed integration_tests' own directly-pinned clock_core/key_protocol deps, left on v0.2.0-rc6. That split the dependency graph across two source revisions of lee_core, so types like NullifierPublicKey stopped unifying across crate boundaries and integration_tests failed to compile. Bump the two strays to v0.2.0 to match the rest of the workspace. --- Cargo.lock | 14 +++++++------- programs/integration_tests/Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0933877..84c9977 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -724,7 +724,7 @@ dependencies = [ [[package]] name = "authenticated_transfer_core" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "serde", ] @@ -1024,7 +1024,7 @@ dependencies = [ [[package]] name = "bridge_core" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "lee_core", "serde", @@ -1238,7 +1238,7 @@ dependencies = [ [[package]] name = "common" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "anyhow", "authenticated_transfer_core", @@ -2030,7 +2030,7 @@ dependencies = [ [[package]] name = "faucet_core" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "lee_core", "serde", @@ -3171,7 +3171,7 @@ dependencies = [ [[package]] name = "key_protocol" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "aes-gcm", "anyhow", @@ -5355,7 +5355,7 @@ dependencies = [ [[package]] name = "programs" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "build_utils", "lee", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "system_accounts" version = "0.1.0" -source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0-rc6#e37876a64028a335eb693198a1ed6a0e875ec5b4" +source = "git+https://github.com/logos-blockchain/logos-execution-zone.git?tag=v0.2.0#a58fbce2ff48c58b7bb5001b1a27e64b9596ee3a" dependencies = [ "bridge_core", "clock_core", diff --git a/programs/integration_tests/Cargo.toml b/programs/integration_tests/Cargo.toml index 9eb2b10..d46022f 100644 --- a/programs/integration_tests/Cargo.toml +++ b/programs/integration_tests/Cargo.toml @@ -9,8 +9,8 @@ workspace = true [dependencies] nssa = { workspace = true } nssa_core = { workspace = true, features = ["host", "test_utils"] } -clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc6" } -key_protocol = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc6" } +clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0" } +key_protocol = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0" } amm_core = { workspace = true } token_core = { workspace = true } ata_core = { workspace = true }