diff --git a/Cargo.toml b/Cargo.toml index 807ecee0d7f..e6848e284d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,7 +82,11 @@ sway-ir-macros = { path = "sway-ir/sway-ir-macros" } fuel-abi-types = "0.7" # Dependencies from the `fuel-core` repository: -fuel-core-client = { version = "0.35", default-features = false } +# +# Although ALL verions are "X.Y", we need the complete semver for +# fuel-core-client as the GitHub Actions workflow parses this value to pull down +# the correct tarball +fuel-core-client = { version = "0.35.0", default-features = false } fuel-core-types = { version = "0.35", default-features = false } # Dependencies from the `fuels-rs` repository: diff --git a/test/src/sdk-harness/Cargo.toml b/test/src/sdk-harness/Cargo.toml index 4aa9d622a2f..363dfde5adf 100644 --- a/test/src/sdk-harness/Cargo.toml +++ b/test/src/sdk-harness/Cargo.toml @@ -11,7 +11,8 @@ assert_matches = "1.5" # Dependencies from the `fuel-core` repository: fuel-core = { version = "0.35", default-features = false } -fuel-core-client = { version = "0.35", default-features = false } +# Using full semver as the workspace Cargo.toml (see the comment there) +fuel-core-client = { version = "0.35.0", default-features = false } # Dependencies from the `fuel-vm` repository: fuel-vm = { version = "0.56", features = ["random"] }