From db1424343d7700972a1996278dbf6e96a93adf02 Mon Sep 17 00:00:00 2001 From: hal3e Date: Mon, 16 Sep 2024 11:08:08 +0200 Subject: [PATCH] use patch.crates-io --- Cargo.toml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5bcbc6d3b..c340d2850 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,12 +85,14 @@ octocrab = { version = "0.39", default-features = false } dotenv = { version = "0.15", default-features = false } # Dependencies from the `fuel-core` repository: -fuel-core = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core", default-features = false, features = ["wasm-executor"] } -fuel-core-chain-config = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-chain-config", default-features = false } -fuel-core-client = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-client", default-features = false } # TODO: remove this @hal3e -fuel-core-poa = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-poa", default-features = false } -fuel-core-services = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-services", default-features = false } -fuel-core-types = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-types", default-features = false } +fuel-core = { version = "0.35.0", default-features = false, features = [ + "wasm-executor", +] } +fuel-core-chain-config = { version = "0.35.0", default-features = false } +fuel-core-client = { version = "0.35.0", default-features = false } +fuel-core-poa = { version = "0.35.0", default-features = false } +fuel-core-services = { version = "0.35.0", default-features = false } +fuel-core-types = { version = "0.35.0", default-features = false } # Dependencies from the `fuel-vm` repository: fuel-asm = { version = "0.56.0" } @@ -110,3 +112,11 @@ fuels-macros = { version = "0.66.4", path = "./packages/fuels-macros", default-f fuels-programs = { version = "0.66.4", path = "./packages/fuels-programs", default-features = false } fuels-test-helpers = { version = "0.66.4", path = "./packages/fuels-test-helpers", default-features = false } versions-replacer = { version = "0.66.4", path = "./scripts/versions-replacer", default-features = false } + +[patch.crates-io] +fuel-core = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core"} +fuel-core-chain-config = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-chain-config"} +fuel-core-client = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-client"} # TODO: remove this @hal3e +fuel-core-poa = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-poa"} +fuel-core-services = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-services"} +fuel-core-types = { git = "https://github.com/FuelLabs/fuel-core", branch = "hal3e/unknown-variants", package = "fuel-core-types"}