Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: upgrade fuel-core to v0.20.1 #1053

Merged
merged 22 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ env:
CARGO_TERM_COLOR: always
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v1.24.3/dasel_linux_amd64
RUSTFLAGS: "-D warnings"
FUEL_CORE_VERSION: 0.19.1
FUEL_CORE_VERSION: 0.20.1
RUST_VERSION: 1.70.0
FORC_VERSION: 0.40.1
FORC_PATCH_BRANCH: ""
FORC_PATCH_BRANCH: "upgrade/fuel-core-v0.20.1"
Br1ght0ne marked this conversation as resolved.
Show resolved Hide resolved
FORC_PATCH_REVISION: ""

jobs:
Expand Down Expand Up @@ -196,6 +196,7 @@ jobs:
with:
key: "${{ matrix.cargo_command }} ${{ matrix.args }} ${{ matrix.package }}"

# Use docker image of the `fuel-core` instead or build the `fuel-core` from the `master`.
- name: Install Fuel Core
if: ${{ matrix.install_fuel_core }}
run: |
Expand Down
26 changes: 15 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,6 @@ chrono = "0.4.24"
elliptic-curve = { version = "0.13.4", default-features = false }
eth-keystore = "0.5.0"
fuel-abi-types = "0.3.0"
fuel-core = { version = "0.19.1", default-features = false }
fuel-core-chain-config = { version = "0.19.1", default-features = false }
fuel-core-client = { version = "0.19.1", default-features = false }
fuel-core-types = { version = "0.19.1", default-features = false }
fuel-asm = "0.34.0"
fuel-crypto = "0.34.0"
fuel-merkle = "0.34.0"
fuel-storage = "0.34.0"
fuel-tx = "0.34.0"
fuel-types = { version = "0.34.0", default-features = false }
fuel-vm = "0.34.0"
fuels = { version = "0.44.0", path = "./packages/fuels" }
fuels-accounts = { version = "0.44.0", path = "./packages/fuels-accounts", default-features = false }
fuels-code-gen = { version = "0.44.0", path = "./packages/fuels-code-gen", default-features = false }
Expand Down Expand Up @@ -84,3 +73,18 @@ thiserror = { version = "1.0.40", default-features = false }
tokio = { version = "1.27.0", default-features = false }
trybuild = "1.0.80"
which = { version = "4.4", default-features = false }

# Depednencies from `fuel-core` repository:
xgreenx marked this conversation as resolved.
Show resolved Hide resolved
fuel-core = { version = "0.20.1", default-features = false }
fuel-core-chain-config = { version = "0.20.1", default-features = false }
fuel-core-client = { version = "0.20.1", default-features = false }
fuel-core-types = { version = "0.20.1", default-features = false }

# Depednencies from `fuel-vm` repository:
xgreenx marked this conversation as resolved.
Show resolved Hide resolved
fuel-asm = "0.35.0"
fuel-crypto = "0.35.0"
fuel-merkle = "0.35.0"
fuel-storage = "0.35.0"
fuel-tx = "0.35.0"
fuel-types = { version = "0.35.0", default-features = false }
fuel-vm = "0.35.0"
Loading