From f05d7f641610d3b13b06af25d467fd3e71c5e7f2 Mon Sep 17 00:00:00 2001
From: Mohammad Fawaz <mohammadfawaz89@gmail.com>
Date: Thu, 13 Oct 2022 13:32:01 -0400
Subject: [PATCH] Bump to `v0.26.0` (#3023)

Also run `cargo update`
---
 Cargo.lock                           | 210 +++++++++++++++++++--------
 forc-pkg/Cargo.toml                  |  12 +-
 forc-plugins/forc-client/Cargo.toml  |  12 +-
 forc-plugins/forc-explore/Cargo.toml |   4 +-
 forc-plugins/forc-fmt/Cargo.toml     |  10 +-
 forc-plugins/forc-lsp/Cargo.toml     |   4 +-
 forc-util/Cargo.toml                 |  10 +-
 forc/Cargo.toml                      |  12 +-
 sway-ast/Cargo.toml                  |   4 +-
 sway-core/Cargo.toml                 |  14 +-
 sway-error/Cargo.toml                |   6 +-
 sway-ir/Cargo.toml                   |   6 +-
 sway-ir/sway-ir-macros/Cargo.toml    |   2 +-
 sway-lsp/Cargo.toml                  |  16 +-
 sway-parse/Cargo.toml                |   8 +-
 sway-types/Cargo.toml                |   2 +-
 sway-utils/Cargo.toml                |   2 +-
 swayfmt/Cargo.toml                   |  14 +-
 18 files changed, 222 insertions(+), 126 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index d496a08dd5b..4bfaf702535 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -705,6 +705,16 @@ dependencies = [
  "os_str_bytes",
 ]
 
+[[package]]
+name = "codespan-reporting"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
+dependencies = [
+ "termcolor",
+ "unicode-width",
+]
+
 [[package]]
 name = "coins-bip32"
 version = "0.7.0"
@@ -918,9 +928,9 @@ dependencies = [
 
 [[package]]
 name = "crypto-bigint"
-version = "0.4.8"
+version = "0.4.9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f2b443d17d49dad5ef0ede301c3179cc923b8822f3393b4d2c28c269dd4a122"
+checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
 dependencies = [
  "generic-array 0.14.6",
  "rand_core 0.6.4",
@@ -1008,6 +1018,50 @@ dependencies = [
  "cipher 0.3.0",
 ]
 
+[[package]]
+name = "cxx"
+version = "1.0.78"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "19f39818dcfc97d45b03953c1292efc4e80954e1583c4aa770bac1383e2310a4"
+dependencies = [
+ "cc",
+ "cxxbridge-flags",
+ "cxxbridge-macro",
+ "link-cplusplus",
+]
+
+[[package]]
+name = "cxx-build"
+version = "1.0.78"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e580d70777c116df50c390d1211993f62d40302881e54d4b79727acb83d0199"
+dependencies = [
+ "cc",
+ "codespan-reporting",
+ "once_cell",
+ "proc-macro2",
+ "quote",
+ "scratch",
+ "syn",
+]
+
+[[package]]
+name = "cxxbridge-flags"
+version = "1.0.78"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56a46460b88d1cec95112c8c363f0e2c39afdb237f60583b0b36343bf627ea9c"
+
+[[package]]
+name = "cxxbridge-macro"
+version = "1.0.78"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "747b608fecf06b0d72d440f27acc99288207324b793be2c17991839f3d4995ea"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
 [[package]]
 name = "cynic"
 version = "1.0.0"
@@ -1259,7 +1313,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
 dependencies = [
  "base16ct",
- "crypto-bigint 0.4.8",
+ "crypto-bigint 0.4.9",
  "der 0.6.0",
  "digest 0.10.5",
  "ff",
@@ -1419,7 +1473,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 
 [[package]]
 name = "forc"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "annotate-snippets",
  "anyhow",
@@ -1448,7 +1502,7 @@ dependencies = [
 
 [[package]]
 name = "forc-client"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "clap 3.2.22",
@@ -1474,7 +1528,7 @@ dependencies = [
 
 [[package]]
 name = "forc-explore"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "clap 3.2.22",
@@ -1489,7 +1543,7 @@ dependencies = [
 
 [[package]]
 name = "forc-fmt"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "clap 3.2.22",
@@ -1504,7 +1558,7 @@ dependencies = [
 
 [[package]]
 name = "forc-lsp"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "clap 3.2.22",
@@ -1514,7 +1568,7 @@ dependencies = [
 
 [[package]]
 name = "forc-pkg"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "forc-util",
@@ -1540,7 +1594,7 @@ dependencies = [
 
 [[package]]
 name = "forc-util"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "annotate-snippets",
  "ansi_term",
@@ -2047,9 +2101,9 @@ dependencies = [
 
 [[package]]
 name = "group"
-version = "0.12.0"
+version = "0.12.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7391856def869c1c81063a03457c676fbcd419709c3dfb33d8d319de484b154d"
+checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
 dependencies = [
  "ff",
  "rand_core 0.6.4",
@@ -2206,7 +2260,7 @@ checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
 dependencies = [
  "bytes",
  "fnv",
- "itoa 1.0.3",
+ "itoa 1.0.4",
 ]
 
 [[package]]
@@ -2294,7 +2348,7 @@ dependencies = [
  "http-body",
  "httparse",
  "httpdate",
- "itoa 1.0.3",
+ "itoa 1.0.4",
  "pin-project-lite",
  "socket2",
  "tokio",
@@ -2318,17 +2372,28 @@ dependencies = [
 
 [[package]]
 name = "iana-time-zone"
-version = "0.1.50"
+version = "0.1.51"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fd911b35d940d2bd0bea0f9100068e5b97b51a1cbe13d13382f132e0365257a0"
+checksum = "f5a6ef98976b22b3b7f2f3a806f858cb862044cfa66805aa3ad84cb3d3b785ed"
 dependencies = [
  "android_system_properties",
  "core-foundation-sys",
+ "iana-time-zone-haiku",
  "js-sys",
  "wasm-bindgen",
  "winapi",
 ]
 
+[[package]]
+name = "iana-time-zone-haiku"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fde6edd6cef363e9359ed3c98ba64590ba9eecba2293eb5a723ab32aee8926aa"
+dependencies = [
+ "cxx",
+ "cxx-build",
+]
+
 [[package]]
 name = "ident_case"
 version = "1.0.1"
@@ -2407,9 +2472,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
 
 [[package]]
 name = "itoa"
-version = "1.0.3"
+version = "1.0.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
+checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
 
 [[package]]
 name = "jobserver"
@@ -2497,9 +2562,9 @@ dependencies = [
 
 [[package]]
 name = "libc"
-version = "0.2.134"
+version = "0.2.135"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb"
+checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
 
 [[package]]
 name = "libgit2-sys"
@@ -2541,6 +2606,15 @@ dependencies = [
  "vcpkg",
 ]
 
+[[package]]
+name = "link-cplusplus"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
+dependencies = [
+ "cc",
+]
+
 [[package]]
 name = "lock_api"
 version = "0.4.9"
@@ -2717,6 +2791,16 @@ dependencies = [
  "version_check",
 ]
 
+[[package]]
+name = "nu-ansi-term"
+version = "0.46.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
+dependencies = [
+ "overload",
+ "winapi",
+]
+
 [[package]]
 name = "num-bigint"
 version = "0.4.3"
@@ -2820,6 +2904,12 @@ version = "6.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
 
+[[package]]
+name = "overload"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
+
 [[package]]
 name = "owo-colors"
 version = "1.3.0"
@@ -3449,7 +3539,7 @@ version = "0.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "88c86280f057430a52f4861551b092a01b419b8eacefc7c995eacb9dc132fe32"
 dependencies = [
- "crypto-bigint 0.4.8",
+ "crypto-bigint 0.4.9",
  "hmac 0.12.1",
  "zeroize",
 ]
@@ -3648,6 +3738,12 @@ version = "1.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
 
+[[package]]
+name = "scratch"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
+
 [[package]]
 name = "scrypt"
 version = "0.7.0"
@@ -3712,7 +3808,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "b7649a0b3ffb32636e60c7ce0d70511eda9c52c658cd0634e194d5a19943aeff"
 dependencies = [
  "rand 0.8.5",
- "secp256k1-sys 0.6.0",
+ "secp256k1-sys 0.6.1",
 ]
 
 [[package]]
@@ -3726,9 +3822,9 @@ dependencies = [
 
 [[package]]
 name = "secp256k1-sys"
-version = "0.6.0"
+version = "0.6.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7058dc8eaf3f2810d7828680320acda0b25a288f6d288e19278e249bbf74226b"
+checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b"
 dependencies = [
  "cc",
 ]
@@ -3788,11 +3884,11 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.85"
+version = "1.0.86"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
+checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
 dependencies = [
- "itoa 1.0.3",
+ "itoa 1.0.4",
  "ryu",
  "serde",
 ]
@@ -3826,7 +3922,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
 dependencies = [
  "form_urlencoded",
- "itoa 1.0.3",
+ "itoa 1.0.4",
  "ryu",
  "serde",
 ]
@@ -3978,9 +4074,9 @@ dependencies = [
 
 [[package]]
 name = "signature"
-version = "1.6.3"
+version = "1.6.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "deb766570a2825fa972bceff0d195727876a9cdf2460ab2e52d455dc2de47fd9"
+checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
 dependencies = [
  "digest 0.10.5",
  "rand_core 0.6.4",
@@ -4206,7 +4302,7 @@ dependencies = [
 
 [[package]]
 name = "sway-ast"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "extension-trait",
  "num-bigint",
@@ -4216,7 +4312,7 @@ dependencies = [
 
 [[package]]
 name = "sway-core"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "clap 3.2.22",
  "derivative",
@@ -4250,7 +4346,7 @@ dependencies = [
 
 [[package]]
 name = "sway-error"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "extension-trait",
  "num-bigint",
@@ -4262,7 +4358,7 @@ dependencies = [
 
 [[package]]
 name = "sway-ir"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "filecheck",
@@ -4275,7 +4371,7 @@ dependencies = [
 
 [[package]]
 name = "sway-ir-macros"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "itertools",
  "proc-macro2",
@@ -4285,7 +4381,7 @@ dependencies = [
 
 [[package]]
 name = "sway-lsp"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "async-trait",
@@ -4311,7 +4407,7 @@ dependencies = [
 
 [[package]]
 name = "sway-parse"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "assert_matches",
  "extension-trait",
@@ -4327,7 +4423,7 @@ dependencies = [
 
 [[package]]
 name = "sway-types"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "fuel-asm 0.8.0",
  "fuel-crypto",
@@ -4338,11 +4434,11 @@ dependencies = [
 
 [[package]]
 name = "sway-utils"
-version = "0.25.2"
+version = "0.26.0"
 
 [[package]]
 name = "swayfmt"
-version = "0.25.2"
+version = "0.26.0"
 dependencies = [
  "anyhow",
  "forc-util",
@@ -4362,9 +4458,9 @@ dependencies = [
 
 [[package]]
 name = "syn"
-version = "1.0.101"
+version = "1.0.102"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2"
+checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -4650,9 +4746,9 @@ dependencies = [
 
 [[package]]
 name = "tokio-stream"
-version = "0.1.10"
+version = "0.1.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6edf2d6bc038a43d31353570e27270603f4648d18f5ed10c0e179abe43255af"
+checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
 dependencies = [
  "futures-core",
  "pin-project-lite",
@@ -4728,9 +4824,9 @@ dependencies = [
 
 [[package]]
 name = "tower-layer"
-version = "0.3.1"
+version = "0.3.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
+checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
 
 [[package]]
 name = "tower-lsp"
@@ -4774,9 +4870,9 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
 
 [[package]]
 name = "tracing"
-version = "0.1.36"
+version = "0.1.37"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
+checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
 dependencies = [
  "cfg-if 1.0.0",
  "log",
@@ -4787,9 +4883,9 @@ dependencies = [
 
 [[package]]
 name = "tracing-attributes"
-version = "0.1.22"
+version = "0.1.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
+checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -4798,9 +4894,9 @@ dependencies = [
 
 [[package]]
 name = "tracing-core"
-version = "0.1.29"
+version = "0.1.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
+checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
 dependencies = [
  "once_cell",
  "valuable",
@@ -4829,12 +4925,12 @@ dependencies = [
 
 [[package]]
 name = "tracing-subscriber"
-version = "0.3.15"
+version = "0.3.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
+checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
 dependencies = [
- "ansi_term",
  "matchers",
+ "nu-ansi-term",
  "once_cell",
  "regex",
  "serde",
@@ -4923,9 +5019,9 @@ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
 
 [[package]]
 name = "unicode-ident"
-version = "1.0.4"
+version = "1.0.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
+checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
 
 [[package]]
 name = "unicode-normalization"
diff --git a/forc-pkg/Cargo.toml b/forc-pkg/Cargo.toml
index e92e1c370ca..b0c9c6977d7 100644
--- a/forc-pkg/Cargo.toml
+++ b/forc-pkg/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-pkg"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -10,7 +10,7 @@ description = "Building, locking, fetching and updating Sway projects as Forc pa
 
 [dependencies]
 anyhow = "1"
-forc-util = { version = "0.25.2", path = "../forc-util" }
+forc-util = { version = "0.26.0", path = "../forc-util" }
 fuel-crypto = "0.6"
 fuel-tx = { version = "0.18", features = ["serde"] }
 git2 = { version = "0.14", features = ["vendored-libgit2", "vendored-openssl"] }
@@ -20,10 +20,10 @@ semver = { version = "1.0", features = ["serde"] }
 serde = { version = "1.0", features = ["derive"] }
 serde_ignored = "0.1"
 serde_json = "1.0"
-sway-core = { version = "0.25.2", path = "../sway-core" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
-sway-utils = { version = "0.25.2", path = "../sway-utils" }
+sway-core = { version = "0.26.0", path = "../sway-core" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
+sway-utils = { version = "0.26.0", path = "../sway-utils" }
 toml = "0.5"
 tracing = "0.1"
 url = { version = "2.2", features = ["serde"] }
diff --git a/forc-plugins/forc-client/Cargo.toml b/forc-plugins/forc-client/Cargo.toml
index dff800235b7..f9fb6ec57f3 100644
--- a/forc-plugins/forc-client/Cargo.toml
+++ b/forc-plugins/forc-client/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-client"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -11,8 +11,8 @@ description = "A `forc` plugin for interacting with a Fuel node."
 [dependencies]
 anyhow = "1"
 clap = { version = "3", features = ["derive", "env"] }
-forc-pkg = { version = "0.25.2", path = "../../forc-pkg" }
-forc-util = { version = "0.25.2", path = "../../forc-util" }
+forc-pkg = { version = "0.26.0", path = "../../forc-pkg" }
+forc-util = { version = "0.26.0", path = "../../forc-util" }
 fuel-crypto = "0.6"
 fuel-gql-client = { version = "0.10", default-features = false }
 fuel-tx = "0.18"
@@ -24,9 +24,9 @@ futures = "0.3"
 hex = "0.4.3"
 serde = "1.0"
 serde_json = "1.0.73"
-sway-core = { version = "0.25.2", path = "../../sway-core" }
-sway-types = { version = "0.25.2", path = "../../sway-types" }
-sway-utils = { version = "0.25.2", path = "../../sway-utils" }
+sway-core = { version = "0.26.0", path = "../../sway-core" }
+sway-types = { version = "0.26.0", path = "../../sway-types" }
+sway-utils = { version = "0.26.0", path = "../../sway-utils" }
 tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
 tracing = "0.1"
 
diff --git a/forc-plugins/forc-explore/Cargo.toml b/forc-plugins/forc-explore/Cargo.toml
index 10550d5d33c..31a154a095a 100644
--- a/forc-plugins/forc-explore/Cargo.toml
+++ b/forc-plugins/forc-explore/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-explore"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -11,7 +11,7 @@ description = "A `forc` plugin for running the fuel block explorer."
 [dependencies]
 anyhow = "1"
 clap = { version = "3", features = ["derive"] }
-forc-util = { version = "0.25.2", path = "../../forc-util" }
+forc-util = { version = "0.26.0", path = "../../forc-util" }
 reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
 serde = { version = "1.0", features = ["derive"] }
 tar = "0.4"
diff --git a/forc-plugins/forc-fmt/Cargo.toml b/forc-plugins/forc-fmt/Cargo.toml
index cb6e79c4915..950b3e84a0f 100644
--- a/forc-plugins/forc-fmt/Cargo.toml
+++ b/forc-plugins/forc-fmt/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-fmt"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -11,10 +11,10 @@ description = "A `forc` plugin for running the Sway code formatter."
 [dependencies]
 anyhow = "1"
 clap = { version = "3", features = ["derive"] }
-forc-util = { version = "0.25.2", path = "../../forc-util" }
+forc-util = { version = "0.26.0", path = "../../forc-util" }
 prettydiff = "0.5"
-sway-core = { version = "0.25.2", path = "../../sway-core" }
-sway-utils = { version = "0.25.2", path = "../../sway-utils" }
-swayfmt = { version = "0.25.2", path = "../../swayfmt" }
+sway-core = { version = "0.26.0", path = "../../sway-core" }
+sway-utils = { version = "0.26.0", path = "../../sway-utils" }
+swayfmt = { version = "0.26.0", path = "../../swayfmt" }
 taplo = "0.7"
 tracing = "0.1"
diff --git a/forc-plugins/forc-lsp/Cargo.toml b/forc-plugins/forc-lsp/Cargo.toml
index acfe60607eb..2260604285f 100644
--- a/forc-plugins/forc-lsp/Cargo.toml
+++ b/forc-plugins/forc-lsp/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-lsp"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -11,5 +11,5 @@ description = "A simple `forc` plugin for starting the sway language server."
 [dependencies]
 anyhow = "1"
 clap = { version = "3", features = ["derive"] }
-sway-lsp = { version = "0.25.2", path = "../../sway-lsp" }
+sway-lsp = { version = "0.26.0", path = "../../sway-lsp" }
 tokio = { version = "1.8" }
diff --git a/forc-util/Cargo.toml b/forc-util/Cargo.toml
index 401b4dea41c..55f9fa5a41c 100644
--- a/forc-util/Cargo.toml
+++ b/forc-util/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc-util"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -13,10 +13,10 @@ annotate-snippets = { version = "0.9", features = ["color"] }
 ansi_term = "0.12"
 anyhow = "1"
 dirs = "3.0.2"
-sway-core = { version = "0.25.2", path = "../sway-core" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
-sway-utils = { version = "0.25.2", path = "../sway-utils" }
+sway-core = { version = "0.26.0", path = "../sway-core" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
+sway-utils = { version = "0.26.0", path = "../sway-utils" }
 tracing = "0.1"
 tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "json"] }
 unicode-xid = "0.2.2"
diff --git a/forc/Cargo.toml b/forc/Cargo.toml
index 4c0f18f467d..1173e1193c2 100644
--- a/forc/Cargo.toml
+++ b/forc/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "forc"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -21,16 +21,16 @@ annotate-snippets = { version = "0.9", features = ["color"] }
 anyhow = "1.0.41"
 clap = { version = "3.1", features = ["cargo", "derive", "env"] }
 clap_complete = "3.1"
-forc-pkg = { version = "0.25.2", path = "../forc-pkg" }
-forc-util = { version = "0.25.2", path = "../forc-util" }
+forc-pkg = { version = "0.26.0", path = "../forc-pkg" }
+forc-util = { version = "0.26.0", path = "../forc-util" }
 fs_extra = "1.2"
 fuel-asm = "0.8"
 hex = "0.4.3"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = "1.0.73"
-sway-core = { version = "0.25.2", path = "../sway-core" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
-sway-utils = { version = "0.25.2", path = "../sway-utils" }
+sway-core = { version = "0.26.0", path = "../sway-core" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
+sway-utils = { version = "0.26.0", path = "../sway-utils" }
 term-table = "1.3"
 tokio = { version = "1.8.0", features = ["macros", "rt-multi-thread"] }
 toml = "0.5"
diff --git a/sway-ast/Cargo.toml b/sway-ast/Cargo.toml
index 72784f940e3..f41ac753b05 100644
--- a/sway-ast/Cargo.toml
+++ b/sway-ast/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-ast"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -12,4 +12,4 @@ description = "Sway's parser"
 extension-trait = "1.0.1"
 num-bigint = "0.4.3"
 num-traits = "0.2.14"
-sway-types = { version = "0.25.2", path = "../sway-types" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
diff --git a/sway-core/Cargo.toml b/sway-core/Cargo.toml
index 9fc9913f9be..92b736fa48d 100644
--- a/sway-core/Cargo.toml
+++ b/sway-core/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-core"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -27,12 +27,12 @@ prettydiff = "0.5"
 serde = { version = "1.0", features = ["derive"] }
 sha2 = "0.9"
 smallvec = "1.7"
-sway-ast = { version = "0.25.2", path = "../sway-ast" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-ir = { version = "0.25.2", path = "../sway-ir" }
-sway-parse = { version = "0.25.2", path = "../sway-parse" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
-sway-utils = { version = "0.25.2", path = "../sway-utils" }
+sway-ast = { version = "0.26.0", path = "../sway-ast" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-ir = { version = "0.26.0", path = "../sway-ir" }
+sway-parse = { version = "0.26.0", path = "../sway-parse" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
+sway-utils = { version = "0.26.0", path = "../sway-utils" }
 thiserror = "1.0"
 tracing = "0.1"
 uint = "0.9"
diff --git a/sway-error/Cargo.toml b/sway-error/Cargo.toml
index 3f03f6d1848..6c13502d436 100644
--- a/sway-error/Cargo.toml
+++ b/sway-error/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-error"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -12,6 +12,6 @@ description = "Sway's error handling"
 extension-trait = "1.0.1"
 num-bigint = "0.4.3"
 num-traits = "0.2.14"
-sway-ast = { version = "0.25.2", path = "../sway-ast" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
+sway-ast = { version = "0.26.0", path = "../sway-ast" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
 thiserror = "1.0"
diff --git a/sway-ir/Cargo.toml b/sway-ir/Cargo.toml
index b0767deeee5..13592800217 100644
--- a/sway-ir/Cargo.toml
+++ b/sway-ir/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-ir"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -14,5 +14,5 @@ filecheck = "0.5"
 generational-arena = "0.2"
 peg = "0.7"
 rustc-hash = "1.1.0"
-sway-ir-macros = { version = "0.25.2", path = "sway-ir-macros" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
+sway-ir-macros = { version = "0.26.0", path = "sway-ir-macros" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
diff --git a/sway-ir/sway-ir-macros/Cargo.toml b/sway-ir/sway-ir-macros/Cargo.toml
index 8d40986a656..a1d5bb675ac 100644
--- a/sway-ir/sway-ir-macros/Cargo.toml
+++ b/sway-ir/sway-ir-macros/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-ir-macros"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
diff --git a/sway-lsp/Cargo.toml b/sway-lsp/Cargo.toml
index 23984b17d50..bee427490d0 100644
--- a/sway-lsp/Cargo.toml
+++ b/sway-lsp/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-lsp"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -11,16 +11,16 @@ description = "LSP server for Sway."
 [dependencies]
 anyhow = "1.0.41"
 dashmap = "5.4"
-forc-pkg = { version = "0.25.2", path = "../forc-pkg" }
-forc-util = { version = "0.25.2", path = "../forc-util" }
+forc-pkg = { version = "0.26.0", path = "../forc-pkg" }
+forc-util = { version = "0.26.0", path = "../forc-util" }
 ropey = "1.2"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = "1.0.60"
-sway-core = { version = "0.25.2", path = "../sway-core" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
-sway-utils = { version = "0.25.2", path = "../sway-utils" }
-swayfmt = { version = "0.25.2", path = "../swayfmt" }
+sway-core = { version = "0.26.0", path = "../sway-core" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
+sway-utils = { version = "0.26.0", path = "../sway-utils" }
+swayfmt = { version = "0.26.0", path = "../swayfmt" }
 thiserror = "1.0.30"
 tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
 tower-lsp = "0.17"
diff --git a/sway-parse/Cargo.toml b/sway-parse/Cargo.toml
index dff81719b17..27b0c73cdbe 100644
--- a/sway-parse/Cargo.toml
+++ b/sway-parse/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-parse"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -13,9 +13,9 @@ extension-trait = "1.0.1"
 num-bigint = "0.4.3"
 num-traits = "0.2.14"
 phf = { version = "0.10.1", features = ["macros"] }
-sway-ast = { version = "0.25.2", path = "../sway-ast" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
+sway-ast = { version = "0.26.0", path = "../sway-ast" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
 thiserror = "1.0"
 unicode-xid = "0.2.2"
 
diff --git a/sway-types/Cargo.toml b/sway-types/Cargo.toml
index 084598a354f..1d431e8d856 100644
--- a/sway-types/Cargo.toml
+++ b/sway-types/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-types"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
diff --git a/sway-utils/Cargo.toml b/sway-utils/Cargo.toml
index c6fbebbb509..28f968e5e1e 100644
--- a/sway-utils/Cargo.toml
+++ b/sway-utils/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "sway-utils"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
diff --git a/swayfmt/Cargo.toml b/swayfmt/Cargo.toml
index 12a3d5a8ad9..dd7047ee80a 100644
--- a/swayfmt/Cargo.toml
+++ b/swayfmt/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "swayfmt"
-version = "0.25.2"
+version = "0.26.0"
 authors = ["Fuel Labs <contact@fuel.sh>"]
 edition = "2021"
 homepage = "https://fuel.network/"
@@ -10,15 +10,15 @@ description = "Sway language formatter."
 
 [dependencies]
 anyhow = "1"
-forc-util = { version = "0.25.2", path = "../forc-util" }
+forc-util = { version = "0.26.0", path = "../forc-util" }
 ropey = "1.5"
 serde = { version = "1.0", features = ["derive"] }
 serde_ignored = "0.1"
-sway-ast = { version = "0.25.2", path = "../sway-ast" }
-sway-core = { version = "0.25.2", path = "../sway-core" }
-sway-error = { version = "0.25.2", path = "../sway-error" }
-sway-parse = { version = "0.25.2", path = "../sway-parse" }
-sway-types = { version = "0.25.2", path = "../sway-types" }
+sway-ast = { version = "0.26.0", path = "../sway-ast" }
+sway-core = { version = "0.26.0", path = "../sway-core" }
+sway-error = { version = "0.26.0", path = "../sway-error" }
+sway-parse = { version = "0.26.0", path = "../sway-parse" }
+sway-types = { version = "0.26.0", path = "../sway-types" }
 thiserror = "1.0.30"
 toml = "0.5"