Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
bug: fix feature flag on fuel-indexer-schema for `fuel-indexer-grap…
Browse files Browse the repository at this point in the history
…hql` (#818)

* Fix feature flag on fuel-indexer-schema dep for fuel-indexer-graphql

* Fix default-features option to get rid of warnings

* disable plugins check

---------

Co-authored-by: Rashad Alston <[email protected]>
  • Loading branch information
deekerno and Rashad Alston authored Apr 26, 2023
1 parent 3cb8551 commit a34934a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ jobs:
run: cargo test --locked --all-targets --features e2e,postgres -p fuel-indexer-tests -- --test-threads=1

cargo-test-forc-index-plugins:
if: needs.check-is-semver-branch.outputs.is_semver_branch != 'true'
# if: needs.check-is-semver-branch.outputs.is_semver_branch != 'true'
if: false
needs:
- cargo-toml-fmt-check
- check-is-semver-branch
Expand Down
2 changes: 1 addition & 1 deletion packages/fuel-indexer-graphql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "Fuel Indexer GraphQL"
fuel-indexer-database = { workspace = true }
fuel-indexer-database-types = { workspace = true }
fuel-indexer-graphql-parser = { workspace = true }
fuel-indexer-schema = { workspace = true }
fuel-indexer-schema = { workspace = true, features = ["db-models"] }
fuel-indexer-types = { workspace = true }
thiserror = { version = "1.0" }

Expand Down
2 changes: 1 addition & 1 deletion packages/fuel-indexer-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ proc-macro = true
fuel-abi-types = "0.2.1"
fuel-indexer-database-types = { workspace = true }
fuel-indexer-graphql-parser = { workspace = true }
fuel-indexer-lib = { workspace = true, default-features = false }
fuel-indexer-lib = { workspace = true }
fuel-indexer-schema = { workspace = true, default-features = false }
fuel-indexer-types = { workspace = true }
fuel-tx = "0.26.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/fuel-indexer-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ anyhow = { version = "1.0", default-features = false, optional = true }
async-trait = { version = "0.1", optional = true }
bincode = { version = "1.3" }
fuel-indexer = { workspace = true, features = ["api-server"], optional = true }
fuel-indexer-api-server = { workspace = true, default-features = false, optional = true }
fuel-indexer-database = { workspace = true, default-features = false, optional = true }
fuel-indexer-lib = { workspace = true, default-features = false }
fuel-indexer-api-server = { workspace = true, optional = true }
fuel-indexer-database = { workspace = true, optional = true }
fuel-indexer-lib = { workspace = true }
fuel-indexer-schema = { workspace = true, default-features = false }
fuel-indexer-types = { workspace = true }
hex = "0.4"
Expand Down

0 comments on commit a34934a

Please sign in to comment.