diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe113e134c..a976d738d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ env: CARGO_TERM_COLOR: always DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v2.3.6/dasel_linux_amd64 RUSTFLAGS: "-D warnings" - FUEL_CORE_VERSION: 0.22.0 + FUEL_CORE_VERSION: 0.22.1 FUEL_CORE_PATCH_BRANCH: RUST_VERSION: 1.74.0 FORC_VERSION: 0.50.0 diff --git a/Cargo.toml b/Cargo.toml index cddfd0bddb..31302decac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,21 +72,21 @@ which = { version = "5.0.0", default-features = false } zeroize = "1.7.0" # Dependencies from the `fuel-core` repository: -fuel-core = { version = "0.22.0", default-features = false } -fuel-core-chain-config = { version = "0.22.0", default-features = false } -fuel-core-client = { version = "0.22.0", default-features = false } -fuel-core-poa = { version = "0.22.0", default-features = false } -fuel-core-services = { version = "0.22.0", default-features = false } -fuel-core-types = { version = "0.22.0", default-features = false } +fuel-core = { version = "0.22.1", default-features = false } +fuel-core-chain-config = { version = "0.22.1", default-features = false } +fuel-core-client = { version = "0.22.1", default-features = false } +fuel-core-poa = { version = "0.22.1", default-features = false } +fuel-core-services = { version = "0.22.1", default-features = false } +fuel-core-types = { version = "0.22.1", default-features = false } # Dependencies from the `fuel-vm` repository: -fuel-asm = { version = "0.43.1" } -fuel-crypto = { version = "0.43.1" } -fuel-merkle = { version = "0.43.1" } -fuel-storage = { version = "0.43.1" } -fuel-tx = { version = "0.43.1" } -fuel-types = { version = "0.43.1" } -fuel-vm = { version = "0.43.1" } +fuel-asm = { version = "0.43.2" } +fuel-crypto = { version = "0.43.2" } +fuel-merkle = { version = "0.43.2" } +fuel-storage = { version = "0.43.2" } +fuel-tx = { version = "0.43.2" } +fuel-types = { version = "0.43.2" } +fuel-vm = { version = "0.43.2" } # Workspace projects fuels = { version = "0.55.0", path = "./packages/fuels" } diff --git a/packages/fuels-core/src/types/core/identity.rs b/packages/fuels-core/src/types/core/identity.rs index 61af35bcd6..6a645d3499 100644 --- a/packages/fuels-core/src/types/core/identity.rs +++ b/packages/fuels-core/src/types/core/identity.rs @@ -1,4 +1,4 @@ -use fuel_tx::{Address, ContractId}; +use fuel_types::{Address, ContractId}; use fuels_macros::{Parameterize, Tokenizable, TryFrom}; use serde::{Deserialize, Serialize};