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