From 9bfae12953eff3630251fea332d8d127f2b30766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaya=20G=C3=B6kalp?= Date: Mon, 26 Jun 2023 12:25:19 -0700 Subject: [PATCH] chore: fix default-feature warning for forc-client (#4681) ## 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 ``` --- Cargo.toml | 2 +- forc-plugins/forc-client/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c86a4ccd73d..7cff1430969 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/forc-plugins/forc-client/Cargo.toml b/forc-plugins/forc-client/Cargo.toml index 60134a522fd..bf4aec90e20 100644 --- a/forc-plugins/forc-client/Cargo.toml +++ b/forc-plugins/forc-client/Cargo.toml @@ -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 }