Skip to content

Commit

Permalink
chore: upgrade Fuel dependencies (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
deekerno committed Feb 5, 2024
1 parent a6bc822 commit 0bc9569
Show file tree
Hide file tree
Showing 16 changed files with 89 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
REGISTRY: ghcr.io
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2
SQLX_OFFLINE: true
RUSTC_VERSION: 1.73.0
RUSTC_VERSION: 1.75.0
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
IS_MASTER: ${{ github.head_ref == 'master' || github.ref_name == 'master' }}
IS_DEVELOP: ${{ github.head_ref == 'develop' || github.ref_name == 'develop' }}
Expand Down
103 changes: 53 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuel-indexer"
rust-version = "1.73.0"
rust-version = "1.75.0"
version = "0.24.3"

[workspace.dependencies]
Expand Down Expand Up @@ -88,8 +88,8 @@ fuel-crypto = { version = "0.43", default-features = false }
fuel-tx = { version = "0.43", default-features = false }
fuel-types = { version = "0.43", default-features = false, features = ["serde"] }
fuel-vm = { version = "0.43", default-features = false }
fuels = { version = "0.53", default-features = false }
fuels-code-gen = { version = "0.53", default-features = false }
fuels = { version = "0.55", default-features = false }
fuels-code-gen = { version = "0.55", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.fuel-node
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build
FROM lukemathwalker/cargo-chef:latest-rust-1.73.0 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.75.0 AS chef

WORKDIR /build/

Expand Down
2 changes: 1 addition & 1 deletion deployment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: Build
FROM --platform=$BUILDPLATFORM tonistiigi/xx AS xx
FROM --platform=$BUILDPLATFORM rust:1.73.0 AS chef
FROM --platform=$BUILDPLATFORM rust:1.75.0 AS chef

ARG TARGETPLATFORM
RUN cargo install cargo-chef
Expand Down
2 changes: 1 addition & 1 deletion examples/fuel-explorer/fuel-explorer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fuel_explorer"
version = "0.0.0"
edition = "2021"
publish = false
rust-version = "1.73.0"
rust-version = "1.75.0"

[lib]
crate-type = ['cdylib']
Expand Down
2 changes: 1 addition & 1 deletion examples/greetings/greetings-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fuel-indexer-lib = { workspace = true }
fuel-indexer-tests = { version = "0.0.0", path = "./../../../packages/fuel-indexer-tests" }
fuel-tx = { workspace = true }
fuel-types = { workspace = true }
fuels = { version = "0.53" }
fuels = { version = "0.55" }
rand = "0.8"
thiserror = { workspace = true }
tokio = { features = ["macros", "rt-multi-thread"], workspace = true }
2 changes: 1 addition & 1 deletion examples/greetings/greetings-indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "greetings_indexer"
version = "0.0.0"
edition = "2021"
publish = false
rust-version = "1.72.1"
rust-version = "1.75.0"

[lib]
crate-type = ['cdylib']
Expand Down
Loading

0 comments on commit 0bc9569

Please sign in to comment.