Skip to content

Commit

Permalink
chore: fix default-feature warning for forc-client (FuelLabs#4681)
Browse files Browse the repository at this point in the history
## Description

Fixes the following warning by moving `default-features = false` to
workspace level:

```
warning: /Users/kayagokalp/fuel/dev/sway/forc-plugins/forc-client/Cargo.toml: `default-features` is ignored for fuel-core-client, since `default-features` was not specified for `workspace.dependencies.fuel-core-client`, this could become a hard error in the future
```
  • Loading branch information
kayagokalp authored Jun 26, 2023
1 parent 8d467e6 commit 9bfae12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fuel-asm = "0.31.1"
fuel-crypto = "0.31.1"
fuel-types = "0.31.1"
fuel-tx = "0.31.1"
fuel-core-client = "0.18.2"
fuel-core-client = { version = "0.18.2", default-features = false }
fuel-vm = "0.31.2"
fuels-core = "0.43"
fuels-accounts = "0.43"
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ forc-pkg = { version = "0.40.1", path = "../../forc-pkg" }
forc-tracing = { version = "0.40.1", path = "../../forc-tracing" }
forc-tx = { version = "0.40.1", path = "../forc-tx" }
forc-util = { version = "0.40.1", path = "../../forc-util" }
fuel-core-client = { workspace = true, default-features = false }
fuel-core-client = { workspace = true }
fuel-crypto = { workspace = true }
fuel-tx = { workspace = true, features = ["builder"] }
fuel-vm = { workspace = true }
Expand Down

0 comments on commit 9bfae12

Please sign in to comment.