Skip to content

Commit

Permalink
use patch.crates-io
Browse files Browse the repository at this point in the history
  • Loading branch information
hal3e committed Sep 16, 2024
1 parent e81ae43 commit db14243
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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"}

0 comments on commit db14243

Please sign in to comment.