diff --git a/Cargo.lock b/Cargo.lock index 2d08784ccc5..07ba666411b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2032,8 +2032,9 @@ dependencies = [ [[package]] name = "fuels-accounts" -version = "0.41.0" -source = "git+https://github.com/FuelLabs/fuels-rs?branch=feature/fuel-core-0.18#cf86a14cb2ce1b04eb66d28eda396ee792a742f3" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dad265d8fc612aaef2a4c1fa8bb14d77541575a6d2de6d26e66acc94afdaae" dependencies = [ "async-trait", "bytes", @@ -2059,8 +2060,9 @@ dependencies = [ [[package]] name = "fuels-code-gen" -version = "0.41.0" -source = "git+https://github.com/FuelLabs/fuels-rs?branch=feature/fuel-core-0.18#cf86a14cb2ce1b04eb66d28eda396ee792a742f3" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97e7b697abfac23b3505fa3136bb3e910ed664caa58d1efcb6e11644aa95d8aa" dependencies = [ "Inflector", "fuel-abi-types 0.2.1", @@ -2074,8 +2076,9 @@ dependencies = [ [[package]] name = "fuels-core" -version = "0.41.0" -source = "git+https://github.com/FuelLabs/fuels-rs?branch=feature/fuel-core-0.18#cf86a14cb2ce1b04eb66d28eda396ee792a742f3" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d565f3c3c2974616984149c0440e03aadd600abe29e6268d41ebbdf21ae89915" dependencies = [ "fuel-tx", "fuel-types", @@ -2088,8 +2091,9 @@ dependencies = [ [[package]] name = "fuels-macros" -version = "0.41.0" -source = "git+https://github.com/FuelLabs/fuels-rs?branch=feature/fuel-core-0.18#cf86a14cb2ce1b04eb66d28eda396ee792a742f3" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396b1007bf06f788b47bc710f53bce2cf5c74c32cf072baeae46abfbba1b5c33" dependencies = [ "Inflector", "fuel-abi-types 0.2.1", @@ -2105,8 +2109,9 @@ dependencies = [ [[package]] name = "fuels-types" -version = "0.41.0" -source = "git+https://github.com/FuelLabs/fuels-rs?branch=feature/fuel-core-0.18#cf86a14cb2ce1b04eb66d28eda396ee792a742f3" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e94e08cfab823b1a6ed2830fe22067dd7112f0fe5228bec23d4e95cefebcfe" dependencies = [ "bech32 0.9.1", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 0dffbddb31c..78ee640177c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,9 +40,9 @@ fuel-types = "0.31.1" fuel-tx = "0.31.1" fuel-core-client = "0.18.1" fuel-vm = "0.31.1" -fuels-core = "0.41" -fuels-accounts = "0.41" -fuels-types = "0.41" +fuels-core = "0.42" +fuels-accounts = "0.42" +fuels-types = "0.42" [workspace.package] edition = "2021" @@ -50,8 +50,3 @@ authors = ["Fuel Labs "] homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/FuelLabs/sway" - -[patch.crates-io] -fuels-core = { git = "https://github.com/FuelLabs/fuels-rs", branch = "feature/fuel-core-0.18" } -fuels-types = { git = "https://github.com/FuelLabs/fuels-rs", branch = "feature/fuel-core-0.18" } -fuels-accounts = { git = "https://github.com/FuelLabs/fuels-rs", branch = "feature/fuel-core-0.18" } diff --git a/templates/sway-test-rs/template/Cargo.toml b/templates/sway-test-rs/template/Cargo.toml index ee6205361a2..243a37f3208 100644 --- a/templates/sway-test-rs/template/Cargo.toml +++ b/templates/sway-test-rs/template/Cargo.toml @@ -7,13 +7,10 @@ authors = ["{{authors}}"] license = "Apache-2.0" [dev-dependencies] -fuels = { version = "0.41", features = ["fuel-core-lib"] } +fuels = { version = "0.42", features = ["fuel-core-lib"] } tokio = { version = "1.12", features = ["rt", "macros"] } [[test]] harness = true name = "integration_tests" path = "tests/harness.rs" - -[patch.crates-io] -fuels = { git = "https://github.com/FuelLabs/fuels-rs", branch = "feature/fuel-core-0.18" } diff --git a/test/src/sdk-harness/Cargo.toml b/test/src/sdk-harness/Cargo.toml index aa734459805..399f269ad6f 100644 --- a/test/src/sdk-harness/Cargo.toml +++ b/test/src/sdk-harness/Cargo.toml @@ -12,7 +12,7 @@ fuel-core = { version = "0.18.1", default-features = false } fuel-core-client = { version = "0.18.1", default-features = false } fuel-types = "0.31.1" fuel-vm = "0.31.1" -fuels = { version = "0.41", features = ["fuel-core-lib"] } +fuels = { version = "0.42", features = ["fuel-core-lib"] } hex = "0.4.3" rand = "0.8" sha2 = "0.10" @@ -26,6 +26,3 @@ name = "integration_tests" path = "test_projects/harness.rs" [workspace] - -[patch.crates-io] -fuels = { git = "https://github.com/FuelLabs/fuels-rs", branch = "feature/fuel-core-0.18" } \ No newline at end of file