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

chore: bump to 0.63.0 #6421

Merged
merged 8 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
569 changes: 297 additions & 272 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions forc-pkg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-pkg"
version = "0.62.0"
version = "0.63.0"
description = "Building, locking, fetching and updating Sway projects as Forc packages."
authors.workspace = true
edition.workspace = true
Expand All @@ -13,8 +13,8 @@ ansi_term = "0.12"
anyhow = "1"
byte-unit = "5.1.4"
cid = "0.11"
forc-tracing = { version = "0.62.0", path = "../forc-tracing" }
forc-util = { version = "0.62.0", path = "../forc-util" }
forc-tracing = { version = "0.63.0", path = "../forc-tracing" }
forc-util = { version = "0.63.0", path = "../forc-util" }
fuel-abi-types = { workspace = true }
futures = "0.3"
git2 = { version = "0.19", features = [
Expand All @@ -31,10 +31,10 @@ serde = { version = "1.0", features = ["derive"] }
serde_ignored = "0.1.9"
serde_json = "1.0"
serde_with = "3.3.0"
sway-core = { version = "0.62.0", path = "../sway-core" }
sway-error = { version = "0.62.0", path = "../sway-error" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-utils = { version = "0.62.0", path = "../sway-utils" }
sway-core = { version = "0.63.0", path = "../sway-core" }
sway-error = { version = "0.63.0", path = "../sway-error" }
sway-types = { version = "0.63.0", path = "../sway-types" }
sway-utils = { version = "0.63.0", path = "../sway-utils" }
tar = "0.4.38"
toml = { version = "0.8", features = ["parse"] }
tracing = "0.1"
Expand Down
18 changes: 9 additions & 9 deletions forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-client"
version = "0.62.0"
version = "0.63.0"
description = "A `forc` plugin for interacting with a Fuel node."
authors.workspace = true
edition.workspace = true
Expand All @@ -15,11 +15,11 @@ chrono = { version = "0.4", default-features = false, features = ["std"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
devault = "0.1"
dialoguer = "0.11"
forc = { version = "0.62.0", path = "../../forc" }
forc-pkg = { version = "0.62.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.62.0", path = "../../forc-tracing" }
forc-tx = { version = "0.62.0", path = "../forc-tx" }
forc-util = { version = "0.62.0", path = "../../forc-util" }
forc = { version = "0.63.0", path = "../../forc" }
forc-pkg = { version = "0.63.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.63.0", path = "../../forc-tracing" }
forc-tx = { version = "0.63.0", path = "../forc-tx" }
forc-util = { version = "0.63.0", path = "../../forc-util" }
forc-wallet = { workspace = true }
fuel-abi-types = { workspace = true }
fuel-core-client = { workspace = true, features = ["subscriptions"] }
Expand All @@ -36,9 +36,9 @@ rand = "0.8"
rpassword = "7.2"
serde = "1.0"
serde_json = "1"
sway-core = { version = "0.62.0", path = "../../sway-core" }
sway-types = { version = "0.62.0", path = "../../sway-types" }
sway-utils = { version = "0.62.0", path = "../../sway-utils" }
sway-core = { version = "0.63.0", path = "../../sway-core" }
sway-types = { version = "0.63.0", path = "../../sway-types" }
sway-utils = { version = "0.63.0", path = "../../sway-utils" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
toml_edit = "0.21.1"
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-client/proxy_abi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ This folder contains pre-built version of the owned proxy contract, its abi and

*contract url*: [sway-standard-implementation/src-14/owned_proxy](https://github.com/FuelLabs/sway-standard-implementations/tree/61fd4ad8f69d21cec0d5cd8135bdc4495e0c125c).
*commit hash*: `61fd4ad8f69d21cec0d5cd8135bdc4495e0c125c`
*forc version*: `v0.62.0`
*forc version*: `v0.63.0`
*build command*: `forc build --release`
6 changes: 3 additions & 3 deletions forc-plugins/forc-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-crypto"
version = "0.62.0"
version = "0.63.0"
description = "A `forc` plugin for handling various cryptographic operations and conversions."
authors.workspace = true
edition.workspace = true
Expand All @@ -13,8 +13,8 @@ anyhow = "1.0.75"
async-trait = "0.1.58"
atty = "0.2.14"
clap = { version = "4.5.4", features = ["derive", "env"] }
forc-tracing = { version = "0.62.0", path = "../../forc-tracing" }
forc-util = { version = "0.62.0", path = "../../forc-util" }
forc-tracing = { version = "0.63.0", path = "../../forc-tracing" }
forc-util = { version = "0.63.0", path = "../../forc-util" }
fuel-core-types = { workspace = true }
fuel-crypto = { workspace = true, features = ["random"] }
fuels-core = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions forc-plugins/forc-debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-debug"
version = "0.62.0"
version = "0.63.0"
description = "Supports debugging Sway code via CLI and DAP server."
authors.workspace = true
edition.workspace = true
Expand All @@ -12,18 +12,18 @@ repository.workspace = true
anyhow = "1.0" # Used by the examples and for conversion only
clap = { version = "4.5.4", features = ["derive", "env"] }
dap = "0.4.1-alpha1"
forc-pkg = { version = "0.62.0", path = "../../forc-pkg" }
forc-test = { version = "0.62.0", path = "../../forc-test" }
forc-tracing = { version = "0.62.0", path = "../../forc-tracing" }
forc-pkg = { version = "0.63.0", path = "../../forc-pkg" }
forc-test = { version = "0.63.0", path = "../../forc-test" }
forc-tracing = { version = "0.63.0", path = "../../forc-tracing" }
fuel-core-client = { workspace = true }
fuel-types = { workspace = true, features = ["serde"] }
fuel-vm = { workspace = true, features = ["serde"] }
rayon = "1.7.0"
serde = "1.0"
serde_json = "1.0"
shellfish = { version = "0.6.0", features = ["rustyline", "async", "tokio"] }
sway-core = { version = "0.62.0", path = "../../sway-core" }
sway-types = { version = "0.62.0", path = "../../sway-types" }
sway-core = { version = "0.63.0", path = "../../sway-core" }
sway-types = { version = "0.63.0", path = "../../sway-types" }
thiserror = "1.0"
tokio = { version = "1.8", features = [
"net",
Expand Down
18 changes: 9 additions & 9 deletions forc-plugins/forc-doc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-doc"
version = "0.62.0"
version = "0.63.0"
description = "Build the documentation for the local package and all dependencies. The output is placed in `out/doc` in the same format as the project."
authors.workspace = true
edition.workspace = true
Expand All @@ -12,20 +12,20 @@ repository.workspace = true
anyhow = "1.0.65"
clap = { version = "4.5.4", features = ["derive"] }
comrak = "0.16"
forc-pkg = { version = "0.62.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.62.0", path = "../../forc-tracing" }
forc-util = { version = "0.62.0", path = "../../forc-util" }
forc-pkg = { version = "0.63.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.63.0", path = "../../forc-tracing" }
forc-util = { version = "0.63.0", path = "../../forc-util" }
horrorshow = "0.8.4"
include_dir = "0.7.3"
minifier = "0.3.0"
opener = "0.5.0"
serde = "1.0"
serde_json = "1.0"
sway-ast = { version = "0.62.0", path = "../../sway-ast" }
sway-core = { version = "0.62.0", path = "../../sway-core" }
sway-lsp = { version = "0.62.0", path = "../../sway-lsp" }
sway-types = { version = "0.62.0", path = "../../sway-types" }
swayfmt = { version = "0.62.0", path = "../../swayfmt" }
sway-ast = { version = "0.63.0", path = "../../sway-ast" }
sway-core = { version = "0.63.0", path = "../../sway-core" }
sway-lsp = { version = "0.63.0", path = "../../sway-lsp" }
sway-types = { version = "0.63.0", path = "../../sway-types" }
swayfmt = { version = "0.63.0", path = "../../swayfmt" }

[dev-dependencies]
dir_indexer = "0.0.2"
Expand Down
14 changes: 7 additions & 7 deletions forc-plugins/forc-fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-fmt"
version = "0.62.0"
version = "0.63.0"
description = "A `forc` plugin for running the Sway code formatter."
authors.workspace = true
edition.workspace = true
Expand All @@ -11,12 +11,12 @@ repository.workspace = true
[dependencies]
anyhow = "1"
clap = { version = "4.5.4", features = ["derive"] }
forc-pkg = { version = "0.62.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.62.0", path = "../../forc-tracing" }
forc-util = { version = "0.62.0", path = "../../forc-util" }
forc-pkg = { version = "0.63.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.63.0", path = "../../forc-tracing" }
forc-util = { version = "0.63.0", path = "../../forc-util" }
prettydiff = "0.5"
sway-core = { version = "0.62.0", path = "../../sway-core" }
sway-utils = { version = "0.62.0", path = "../../sway-utils" }
swayfmt = { version = "0.62.0", path = "../../swayfmt" }
sway-core = { version = "0.63.0", path = "../../sway-core" }
sway-utils = { version = "0.63.0", path = "../../sway-utils" }
swayfmt = { version = "0.63.0", path = "../../swayfmt" }
taplo = "0.7"
tracing = "0.1"
4 changes: 2 additions & 2 deletions forc-plugins/forc-lsp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-lsp"
version = "0.62.0"
version = "0.63.0"
description = "A simple `forc` plugin for starting the sway language server."
authors.workspace = true
edition.workspace = true
Expand All @@ -11,6 +11,6 @@ repository.workspace = true
[dependencies]
anyhow = "1"
clap = { version = "4.5.4", features = ["derive"] }
sway-lsp = { version = "0.62.0", path = "../../sway-lsp" }
sway-lsp = { version = "0.63.0", path = "../../sway-lsp" }
tikv-jemallocator = "0.5"
tokio = { version = "1.8" }
4 changes: 2 additions & 2 deletions forc-plugins/forc-tx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-tx"
version = "0.62.0"
version = "0.63.0"
description = "A `forc` plugin for constructing transactions."
authors.workspace = true
edition.workspace = true
Expand All @@ -19,7 +19,7 @@ path = "src/main.rs"
anyhow = "1"
clap = { version = "4.5.4", features = ["derive", "env"] }
devault = "0.1"
forc-util = { version = "0.62.0", path = "../../forc-util" }
forc-util = { version = "0.63.0", path = "../../forc-util" }
fuel-tx = { workspace = true, features = ["serde", "test-helpers", "random"] }
fuel-types = { workspace = true, features = ["serde"] }
serde = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions forc-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-test"
version = "0.62.0"
version = "0.63.0"
description = "A library for building and running Sway unit tests within Forc packages."
authors.workspace = true
edition.workspace = true
Expand All @@ -10,12 +10,12 @@ repository.workspace = true

[dependencies]
anyhow = "1"
forc-pkg = { version = "0.62.0", path = "../forc-pkg" }
forc-pkg = { version = "0.63.0", path = "../forc-pkg" }
fuel-abi-types = { workspace = true }
fuel-tx = { workspace = true, features = ["test-helpers"] }
fuel-vm = { workspace = true, features = ["random", "test-helpers"] }
fuels-core = { workspace = true }
rand = "0.8"
rayon = "1.7.0"
sway-core = { version = "0.62.0", path = "../sway-core" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-core = { version = "0.63.0", path = "../sway-core" }
sway-types = { version = "0.63.0", path = "../sway-types" }
2 changes: 1 addition & 1 deletion forc-tracing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-tracing"
version = "0.62.0"
version = "0.63.0"
description = "Tracing utility shared between forc crates."
authors.workspace = true
edition.workspace = true
Expand Down
12 changes: 6 additions & 6 deletions forc-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-util"
version = "0.62.0"
version = "0.63.0"
description = "Utility items shared between forc crates."
authors.workspace = true
edition.workspace = true
Expand All @@ -15,18 +15,18 @@ anyhow = "1"
clap = { version = "4.5.4", features = ["cargo", "derive", "env"] }
dirs = "3.0.2"
fd-lock = "4.0"
forc-tracing = { version = "0.62.0", path = "../forc-tracing" }
forc-tracing = { version = "0.63.0", path = "../forc-tracing" }
fuel-tx = { workspace = true, features = ["serde"], optional = true }
hex = "0.4.3"
paste = "1.0.14"
regex = "1.10.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.73"
serial_test = "3.0.0"
sway-core = { version = "0.62.0", path = "../sway-core" }
sway-error = { version = "0.62.0", path = "../sway-error" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-utils = { version = "0.62.0", path = "../sway-utils" }
sway-core = { version = "0.63.0", path = "../sway-core" }
sway-error = { version = "0.63.0", path = "../sway-error" }
sway-types = { version = "0.63.0", path = "../sway-types" }
sway-utils = { version = "0.63.0", path = "../sway-utils" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"ansi",
Expand Down
20 changes: 10 additions & 10 deletions forc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc"
version = "0.62.0"
version = "0.63.0"
description = "Fuel Orchestrator."
authors.workspace = true
edition.workspace = true
Expand All @@ -23,20 +23,20 @@ anyhow = "1.0.41"
clap = { version = "4.5.4", features = ["cargo", "derive", "env"] }
clap_complete = "4.5.2"
clap_complete_fig = "4.5.0"
forc-pkg = { version = "0.62.0", path = "../forc-pkg" }
forc-test = { version = "0.62.0", path = "../forc-test" }
forc-tracing = { version = "0.62.0", path = "../forc-tracing" }
forc-util = { version = "0.62.0", path = "../forc-util" }
forc-pkg = { version = "0.63.0", path = "../forc-pkg" }
forc-test = { version = "0.63.0", path = "../forc-test" }
forc-tracing = { version = "0.63.0", path = "../forc-tracing" }
forc-util = { version = "0.63.0", path = "../forc-util" }
fs_extra = "1.2"
fuel-asm = { workspace = true }
hex = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.73"
sway-core = { version = "0.62.0", path = "../sway-core" }
sway-error = { version = "0.62.0", path = "../sway-error" }
sway-ir = { version = "0.62.0", path = "../sway-ir" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-utils = { version = "0.62.0", path = "../sway-utils" }
sway-core = { version = "0.63.0", path = "../sway-core" }
sway-error = { version = "0.63.0", path = "../sway-error" }
sway-ir = { version = "0.63.0", path = "../sway-ir" }
sway-types = { version = "0.63.0", path = "../sway-types" }
sway-utils = { version = "0.63.0", path = "../sway-utils" }
term-table = "1.3"
tokio = { version = "1.8.0", features = ["macros", "rt-multi-thread"] }
toml = { version = "0.7", features = ["parse"] }
Expand Down
6 changes: 3 additions & 3 deletions sway-ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-ast"
version = "0.62.0"
version = "0.63.0"
description = "Sway's AST"
authors.workspace = true
edition.workspace = true
Expand All @@ -13,8 +13,8 @@ extension-trait = "1.0.1"
num-bigint = { version = "0.4.3", features = ["serde"] }
num-traits = "0.2.14"
serde = { version = "1.0", features = ["derive"] }
sway-error = { version = "0.62.0", path = "../sway-error" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-error = { version = "0.63.0", path = "../sway-error" }
sway-types = { version = "0.63.0", path = "../sway-types" }

[lints.clippy]
iter_over_hash_type = "deny"
14 changes: 7 additions & 7 deletions sway-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-core"
version = "0.62.0"
version = "0.63.0"
description = "Sway core language."
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -39,12 +39,12 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
sha2 = "0.9"
strum = { version = "0.24.1", features = ["derive"] }
sway-ast = { version = "0.62.0", path = "../sway-ast" }
sway-error = { version = "0.62.0", path = "../sway-error" }
sway-ir = { version = "0.62.0", path = "../sway-ir" }
sway-parse = { version = "0.62.0", path = "../sway-parse" }
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-utils = { version = "0.62.0", path = "../sway-utils" }
sway-ast = { version = "0.63.0", path = "../sway-ast" }
sway-error = { version = "0.63.0", path = "../sway-error" }
sway-ir = { version = "0.63.0", path = "../sway-ir" }
sway-parse = { version = "0.63.0", path = "../sway-parse" }
sway-types = { version = "0.63.0", path = "../sway-types" }
sway-utils = { version = "0.63.0", path = "../sway-utils" }
thiserror = "1.0"
tracing = "0.1"
uint = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions sway-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-error"
version = "0.62.0"
version = "0.63.0"
description = "Sway's error handling"
authors.workspace = true
edition.workspace = true
Expand All @@ -13,7 +13,7 @@ either = "1.9.0"
in_definite = "1.0.0"
num-traits = "0.2.14"
smallvec = "1.7"
sway-types = { version = "0.62.0", path = "../sway-types" }
sway-types = { version = "0.63.0", path = "../sway-types" }
thiserror = "1.0"
uwuify = { version = "^0.2", optional = true }

Expand Down
Loading
Loading