From d5d8166f373163ccdf19be29eac3f72885c619c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Wo=C5=9B?= Date: Mon, 23 Oct 2023 07:26:59 -0700 Subject: [PATCH] chore: cargo sort the whole workspace (#1427) cargo sort the whole workspace --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d48bb0d94..35b0a5fd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: - name: Install Cargo.toml linter run: cargo binstall --no-confirm cargo-sort - name: Run Cargo.toml sort check - run: cargo sort -w --check packages/**/Cargo.toml + run: cargo sort -w --check docs-test: uses: FuelLabs/github-actions/.github/workflows/mdbook-docs.yml@master with: diff --git a/Cargo.toml b/Cargo.toml index 1d4c28f20..95dc75ea9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ members = [ "examples/greetings/greetings-fuel-client", "examples/greetings/greetings-indexer", "examples/hello-world/hello-world", + "packages/fuel-indexer", "packages/fuel-indexer-api-server", "packages/fuel-indexer-benchmarks", "packages/fuel-indexer-database", @@ -27,7 +28,6 @@ members = [ "packages/fuel-indexer-tests/indexers/simple-wasm/simple-wasm", "packages/fuel-indexer-types", "packages/fuel-indexer-utils", - "packages/fuel-indexer", "plugins/forc-index", "plugins/forc-postgres", ]