From 59cd3028ab9ba9aa5f43d410ebb59497011a63c7 Mon Sep 17 00:00:00 2001 From: Giacomo Pasini Date: Fri, 25 Apr 2025 17:22:44 +0200 Subject: [PATCH] rename sz-poc-offsite to mistral --- {sz-poc-offsite-2025 => mistral}/Cargo.toml | 10 +++++----- .../evm => mistral}/lightnode/Cargo.toml | 0 .../evm => mistral}/lightnode/src/lib.rs | 0 .../evm => mistral}/lightnode/src/main.rs | 0 .../evm => mistral}/lightnode/src/nomos.rs | 0 .../evm => mistral}/lightnode/src/proofcheck.rs | 0 {sz-poc-offsite-2025/evm => mistral}/load/load.js | 0 {sz-poc-offsite-2025/evm => mistral}/load/package.json | 0 .../evm => mistral}/processor/Cargo.toml | 0 .../evm => mistral}/processor/src/lib.rs | 0 {sz-poc-offsite-2025/evm => mistral}/prover/Cargo.toml | 0 .../evm => mistral}/prover/src/http.rs | 0 .../evm => mistral}/prover/src/main.rs | 0 .../evm => mistral}/sequencer-node/Cargo.toml | 0 .../evm => mistral}/sequencer-node/src/main.rs | 0 15 files changed, 5 insertions(+), 5 deletions(-) rename {sz-poc-offsite-2025 => mistral}/Cargo.toml (65%) rename {sz-poc-offsite-2025/evm => mistral}/lightnode/Cargo.toml (100%) rename {sz-poc-offsite-2025/evm => mistral}/lightnode/src/lib.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/lightnode/src/main.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/lightnode/src/nomos.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/lightnode/src/proofcheck.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/load/load.js (100%) rename {sz-poc-offsite-2025/evm => mistral}/load/package.json (100%) rename {sz-poc-offsite-2025/evm => mistral}/processor/Cargo.toml (100%) rename {sz-poc-offsite-2025/evm => mistral}/processor/src/lib.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/prover/Cargo.toml (100%) rename {sz-poc-offsite-2025/evm => mistral}/prover/src/http.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/prover/src/main.rs (100%) rename {sz-poc-offsite-2025/evm => mistral}/sequencer-node/Cargo.toml (100%) rename {sz-poc-offsite-2025/evm => mistral}/sequencer-node/src/main.rs (100%) diff --git a/sz-poc-offsite-2025/Cargo.toml b/mistral/Cargo.toml similarity index 65% rename from sz-poc-offsite-2025/Cargo.toml rename to mistral/Cargo.toml index c4e3157..71b214e 100644 --- a/sz-poc-offsite-2025/Cargo.toml +++ b/mistral/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["evm/processor", "evm/sequencer-node", "evm/prover", "evm/lightnode"] +members = ["processor", "sequencer-node", "prover", "lightnode"] resolver = "3" [workspace.package] @@ -7,10 +7,10 @@ edition = "2024" [workspace.dependencies] # Internal -evm-processor = { path = "evm/processor" } -evm-sequencer-node = { path = "evm/sequencer-node" } -evm-prover = { path = "evm/prover" } -evm-lightnode = { path = "evm/lightnode" } +evm-processor = { path = "processor" } +evm-sequencer-node = { path = "sequencer-node" } +evm-prover = { path = "prover" } +evm-lightnode = { path = "lightnode" } # External eyre = { version = "0.6" } diff --git a/sz-poc-offsite-2025/evm/lightnode/Cargo.toml b/mistral/lightnode/Cargo.toml similarity index 100% rename from sz-poc-offsite-2025/evm/lightnode/Cargo.toml rename to mistral/lightnode/Cargo.toml diff --git a/sz-poc-offsite-2025/evm/lightnode/src/lib.rs b/mistral/lightnode/src/lib.rs similarity index 100% rename from sz-poc-offsite-2025/evm/lightnode/src/lib.rs rename to mistral/lightnode/src/lib.rs diff --git a/sz-poc-offsite-2025/evm/lightnode/src/main.rs b/mistral/lightnode/src/main.rs similarity index 100% rename from sz-poc-offsite-2025/evm/lightnode/src/main.rs rename to mistral/lightnode/src/main.rs diff --git a/sz-poc-offsite-2025/evm/lightnode/src/nomos.rs b/mistral/lightnode/src/nomos.rs similarity index 100% rename from sz-poc-offsite-2025/evm/lightnode/src/nomos.rs rename to mistral/lightnode/src/nomos.rs diff --git a/sz-poc-offsite-2025/evm/lightnode/src/proofcheck.rs b/mistral/lightnode/src/proofcheck.rs similarity index 100% rename from sz-poc-offsite-2025/evm/lightnode/src/proofcheck.rs rename to mistral/lightnode/src/proofcheck.rs diff --git a/sz-poc-offsite-2025/evm/load/load.js b/mistral/load/load.js similarity index 100% rename from sz-poc-offsite-2025/evm/load/load.js rename to mistral/load/load.js diff --git a/sz-poc-offsite-2025/evm/load/package.json b/mistral/load/package.json similarity index 100% rename from sz-poc-offsite-2025/evm/load/package.json rename to mistral/load/package.json diff --git a/sz-poc-offsite-2025/evm/processor/Cargo.toml b/mistral/processor/Cargo.toml similarity index 100% rename from sz-poc-offsite-2025/evm/processor/Cargo.toml rename to mistral/processor/Cargo.toml diff --git a/sz-poc-offsite-2025/evm/processor/src/lib.rs b/mistral/processor/src/lib.rs similarity index 100% rename from sz-poc-offsite-2025/evm/processor/src/lib.rs rename to mistral/processor/src/lib.rs diff --git a/sz-poc-offsite-2025/evm/prover/Cargo.toml b/mistral/prover/Cargo.toml similarity index 100% rename from sz-poc-offsite-2025/evm/prover/Cargo.toml rename to mistral/prover/Cargo.toml diff --git a/sz-poc-offsite-2025/evm/prover/src/http.rs b/mistral/prover/src/http.rs similarity index 100% rename from sz-poc-offsite-2025/evm/prover/src/http.rs rename to mistral/prover/src/http.rs diff --git a/sz-poc-offsite-2025/evm/prover/src/main.rs b/mistral/prover/src/main.rs similarity index 100% rename from sz-poc-offsite-2025/evm/prover/src/main.rs rename to mistral/prover/src/main.rs diff --git a/sz-poc-offsite-2025/evm/sequencer-node/Cargo.toml b/mistral/sequencer-node/Cargo.toml similarity index 100% rename from sz-poc-offsite-2025/evm/sequencer-node/Cargo.toml rename to mistral/sequencer-node/Cargo.toml diff --git a/sz-poc-offsite-2025/evm/sequencer-node/src/main.rs b/mistral/sequencer-node/src/main.rs similarity index 100% rename from sz-poc-offsite-2025/evm/sequencer-node/src/main.rs rename to mistral/sequencer-node/src/main.rs