refactor!: move LEZ related crates to dedicated directory

BREAKING CHANGE: LEZ crates have been moved from top-level directories into
  a dedicated `lez/` subdirectory. The following crates were relocated:

    common          → lez/common
    indexer         → lez/indexer
    explorer_service→ lez/explorer_service
    keycard_wallet  → lez/keycard_wallet
    mempool         → lez/mempool
    sequencer       → lez/sequencer
    storage         → lez/storage
    testnet_initial_state → lez/testnet_initial_state
    wallet          → lez/wallet
    wallet-ffi      → lez/wallet-ffi

  Any external tooling, scripts, or paths referencing these crates at their
  previous top-level locations must be updated.
This commit is contained in:
Sergio Chouhy
2026-06-02 14:17:59 -03:00
parent f3ab53460a
commit 50be74580b
176 changed files with 112 additions and 88 deletions
+4 -4
View File
@@ -13,18 +13,18 @@ jobs:
matrix:
include:
- name: sequencer_service
dockerfile: ./sequencer/service/Dockerfile
dockerfile: ./lez/sequencer/service/Dockerfile
build_args: |
STANDALONE=false
- name: sequencer_service-standalone
dockerfile: ./sequencer/service/Dockerfile
dockerfile: ./lez/sequencer/service/Dockerfile
build_args: |
STANDALONE=true
- name: indexer_service
dockerfile: ./indexer/service/Dockerfile
dockerfile: ./lez/indexer/service/Dockerfile
build_args: ""
- name: explorer_service
dockerfile: ./explorer_service/Dockerfile
dockerfile: ./lez/explorer_service/Dockerfile
build_args: ""
steps:
- uses: actions/checkout@v5