Skip to content

Commit

Permalink
update fuel-vm
Browse files Browse the repository at this point in the history
  • Loading branch information
hal3e committed Sep 17, 2024
1 parent db14243 commit 695d4fd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v2.3.6/dasel_linux_amd64
RUSTFLAGS: "-D warnings"
FUEL_CORE_VERSION: 0.35.0
FUEL_CORE_PATCH_BRANCH:
FUEL_CORE_PATCH_BRANCH: "hal3e/unknown-variants"
RUST_VERSION: 1.79.0
FORC_VERSION: 0.63.3
FORC_PATCH_BRANCH: ""
Expand Down
36 changes: 13 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,21 @@ octocrab = { version = "0.39", default-features = false }
dotenv = { version = "0.15", default-features = false }

# Dependencies from the `fuel-core` repository:
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 }
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 }

# Dependencies from the `fuel-vm` repository:
fuel-asm = { version = "0.56.0" }
fuel-crypto = { version = "0.56.0" }
fuel-merkle = { version = "0.56.0" }
fuel-storage = { version = "0.56.0" }
fuel-tx = { version = "0.56.0" }
fuel-types = { version = "0.56.0" }
fuel-vm = { version = "0.56.0" }
fuel-asm = { version = "0.57.0" }
fuel-crypto = { version = "0.57.0" }
fuel-merkle = { version = "0.57.0" }
fuel-storage = { version = "0.57.0" }
fuel-tx = { version = "0.57.0" }
fuel-types = { version = "0.57.0" }
fuel-vm = { version = "0.57.0" }

# Workspace projects
fuels = { version = "0.66.4", path = "./packages/fuels", default-features = false }
Expand All @@ -112,11 +110,3 @@ 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 695d4fd

Please sign in to comment.