From b9d8a0ff7042f2cf85ea90955d3a77e6a932269d Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Mon, 18 May 2026 13:02:32 +0200 Subject: [PATCH] chore: update spel to v0.3.0 --- Cargo.lock | 8 ++++---- amm/core/Cargo.toml | 2 +- amm/methods/guest/Cargo.lock | 12 ++++++------ amm/methods/guest/Cargo.toml | 2 +- ata/methods/guest/Cargo.lock | 12 ++++++------ ata/methods/guest/Cargo.toml | 2 +- stablecoin/core/Cargo.toml | 2 +- stablecoin/methods/guest/Cargo.lock | 12 ++++++------ stablecoin/methods/guest/Cargo.toml | 2 +- token/core/Cargo.toml | 2 +- token/methods/guest/Cargo.lock | 12 ++++++------ token/methods/guest/Cargo.toml | 2 +- tools/idl-gen/Cargo.toml | 2 +- 13 files changed, 36 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 531e40b..77d82b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2969,8 +2969,8 @@ dependencies = [ [[package]] name = "spel-framework-core" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2984,8 +2984,8 @@ dependencies = [ [[package]] name = "spel-framework-macros" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "proc-macro2", "quote", diff --git a/amm/core/Cargo.toml b/amm/core/Cargo.toml index 7fe2729..c832b9b 100644 --- a/amm/core/Cargo.toml +++ b/amm/core/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] } -spel-framework-macros = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework-macros" } +spel-framework-macros = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework-macros" } token_core = { path = "../../token/core" } borsh = { version = "1.5", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } diff --git a/amm/methods/guest/Cargo.lock b/amm/methods/guest/Cargo.lock index b1c7136..7dcd666 100644 --- a/amm/methods/guest/Cargo.lock +++ b/amm/methods/guest/Cargo.lock @@ -2891,8 +2891,8 @@ dependencies = [ [[package]] name = "spel-framework" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2903,8 +2903,8 @@ dependencies = [ [[package]] name = "spel-framework-core" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2918,8 +2918,8 @@ dependencies = [ [[package]] name = "spel-framework-macros" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "proc-macro2", "quote", diff --git a/amm/methods/guest/Cargo.toml b/amm/methods/guest/Cargo.toml index c878494..a840422 100644 --- a/amm/methods/guest/Cargo.toml +++ b/amm/methods/guest/Cargo.toml @@ -10,7 +10,7 @@ name = "amm" path = "src/bin/amm.rs" [dependencies] -spel-framework = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework" } +spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" } nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" } risc0-zkvm = { version = "=3.0.5", default-features = false } amm_core = { path = "../../core" } diff --git a/ata/methods/guest/Cargo.lock b/ata/methods/guest/Cargo.lock index fe7116a..ba53cf4 100644 --- a/ata/methods/guest/Cargo.lock +++ b/ata/methods/guest/Cargo.lock @@ -2889,8 +2889,8 @@ dependencies = [ [[package]] name = "spel-framework" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2901,8 +2901,8 @@ dependencies = [ [[package]] name = "spel-framework-core" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2916,8 +2916,8 @@ dependencies = [ [[package]] name = "spel-framework-macros" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "proc-macro2", "quote", diff --git a/ata/methods/guest/Cargo.toml b/ata/methods/guest/Cargo.toml index db4b128..d82715b 100644 --- a/ata/methods/guest/Cargo.toml +++ b/ata/methods/guest/Cargo.toml @@ -10,7 +10,7 @@ name = "ata" path = "src/bin/ata.rs" [dependencies] -spel-framework = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework" } +spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" } nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" } risc0-zkvm = { version = "=3.0.5", default-features = false } ata_core = { path = "../../core" } diff --git a/stablecoin/core/Cargo.toml b/stablecoin/core/Cargo.toml index a4ca11e..2afb6a7 100644 --- a/stablecoin/core/Cargo.toml +++ b/stablecoin/core/Cargo.toml @@ -8,4 +8,4 @@ nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.gi borsh = { version = "1.5", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } risc0-zkvm = { version = "=3.0.5", default-features = false } -spel-framework-macros = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework-macros" } +spel-framework-macros = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework-macros" } diff --git a/stablecoin/methods/guest/Cargo.lock b/stablecoin/methods/guest/Cargo.lock index eacd8fe..54a6d9f 100644 --- a/stablecoin/methods/guest/Cargo.lock +++ b/stablecoin/methods/guest/Cargo.lock @@ -2856,8 +2856,8 @@ dependencies = [ [[package]] name = "spel-framework" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2868,8 +2868,8 @@ dependencies = [ [[package]] name = "spel-framework-core" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2883,8 +2883,8 @@ dependencies = [ [[package]] name = "spel-framework-macros" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "proc-macro2", "quote", diff --git a/stablecoin/methods/guest/Cargo.toml b/stablecoin/methods/guest/Cargo.toml index 254a1d1..12ceac8 100644 --- a/stablecoin/methods/guest/Cargo.toml +++ b/stablecoin/methods/guest/Cargo.toml @@ -10,7 +10,7 @@ name = "stablecoin" path = "src/bin/stablecoin.rs" [dependencies] -spel-framework = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework" } +spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" } nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" } risc0-zkvm = { version = "=3.0.5", default-features = false } stablecoin_core = { path = "../../core" } diff --git a/token/core/Cargo.toml b/token/core/Cargo.toml index afdbc31..34aaf17 100644 --- a/token/core/Cargo.toml +++ b/token/core/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] } -spel-framework-macros = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework-macros" } +spel-framework-macros = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework-macros" } borsh = { version = "1.5", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } diff --git a/token/methods/guest/Cargo.lock b/token/methods/guest/Cargo.lock index 6083228..07f88f1 100644 --- a/token/methods/guest/Cargo.lock +++ b/token/methods/guest/Cargo.lock @@ -2856,8 +2856,8 @@ dependencies = [ [[package]] name = "spel-framework" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2868,8 +2868,8 @@ dependencies = [ [[package]] name = "spel-framework-core" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "borsh", "nssa_core", @@ -2883,8 +2883,8 @@ dependencies = [ [[package]] name = "spel-framework-macros" -version = "0.2.0" -source = "git+https://github.com/logos-co/spel.git?rev=6473ab4c400bc59bac8db83a286faaeafa7d1999#6473ab4c400bc59bac8db83a286faaeafa7d1999" +version = "0.3.0" +source = "git+https://github.com/logos-co/spel.git?tag=v0.3.0#84f50d4aa473a70b72a16a7fb468c5618277cdd7" dependencies = [ "proc-macro2", "quote", diff --git a/token/methods/guest/Cargo.toml b/token/methods/guest/Cargo.toml index 4a57ba4..f09f6ae 100644 --- a/token/methods/guest/Cargo.toml +++ b/token/methods/guest/Cargo.toml @@ -10,7 +10,7 @@ name = "token" path = "src/bin/token.rs" [dependencies] -spel-framework = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", package = "spel-framework" } +spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" } nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" } risc0-zkvm = { version = "=3.0.5", default-features = false } token_core = { path = "../../core" } diff --git a/tools/idl-gen/Cargo.toml b/tools/idl-gen/Cargo.toml index 7817871..dc7f289 100644 --- a/tools/idl-gen/Cargo.toml +++ b/tools/idl-gen/Cargo.toml @@ -8,7 +8,7 @@ name = "idl-gen" path = "src/main.rs" [dependencies] -spel-framework-core = { git = "https://github.com/logos-co/spel.git", rev = "6473ab4c400bc59bac8db83a286faaeafa7d1999", features = [ +spel-framework-core = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", features = [ "idl-gen", ] } serde_json = "1.0"