mirror of
https://github.com/FuelLabs/sway.git
synced 2025-08-08 20:58:27 +00:00
Bump to v0.59.0 (#6030)
This commit is contained in:
parent
e97d6acefe
commit
d9985d8111
27 changed files with 246 additions and 224 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-client"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "A `forc` plugin for interacting with a Fuel node."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -14,11 +14,11 @@ async-trait = "0.1.58"
|
|||
chrono = { version = "0.4", default-features = false, features = ["std"] }
|
||||
clap = { version = "4.5.4", features = ["derive", "env"] }
|
||||
devault = "0.1"
|
||||
forc = { version = "0.58.0", path = "../../forc" }
|
||||
forc-pkg = { version = "0.58.0", path = "../../forc-pkg" }
|
||||
forc-tracing = { version = "0.58.0", path = "../../forc-tracing" }
|
||||
forc-tx = { version = "0.58.0", path = "../forc-tx" }
|
||||
forc-util = { version = "0.58.0", path = "../../forc-util" }
|
||||
forc = { version = "0.59.0", path = "../../forc" }
|
||||
forc-pkg = { version = "0.59.0", path = "../../forc-pkg" }
|
||||
forc-tracing = { version = "0.59.0", path = "../../forc-tracing" }
|
||||
forc-tx = { version = "0.59.0", path = "../forc-tx" }
|
||||
forc-util = { version = "0.59.0", path = "../../forc-util" }
|
||||
forc-wallet = { workspace = true }
|
||||
fuel-abi-types = { workspace = true }
|
||||
fuel-core-client = { workspace = true, features = ["subscriptions"] }
|
||||
|
@ -34,9 +34,9 @@ rand = "0.8"
|
|||
rpassword = "7.2"
|
||||
serde = "1.0"
|
||||
serde_json = "1"
|
||||
sway-core = { version = "0.58.0", path = "../../sway-core" }
|
||||
sway-types = { version = "0.58.0", path = "../../sway-types" }
|
||||
sway-utils = { version = "0.58.0", path = "../../sway-utils" }
|
||||
sway-core = { version = "0.59.0", path = "../../sway-core" }
|
||||
sway-types = { version = "0.59.0", path = "../../sway-types" }
|
||||
sway-utils = { version = "0.59.0", path = "../../sway-utils" }
|
||||
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
|
||||
tracing = "0.1"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-crypto"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "A `forc` plugin for handling various cryptographic operations and conversions."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -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.58.0", path = "../../forc-tracing" }
|
||||
forc-util = { version = "0.58.0", path = "../../forc-util" }
|
||||
forc-tracing = { version = "0.59.0", path = "../../forc-tracing" }
|
||||
forc-util = { version = "0.59.0", path = "../../forc-util" }
|
||||
fuel-core-types = { workspace = true }
|
||||
fuel-crypto = { workspace = true, features = ["random"] }
|
||||
fuels-core = { workspace = true }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-debug"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "Supports debugging Sway code via CLI and DAP server."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -12,8 +12,8 @@ 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.58.0", path = "../../forc-pkg" }
|
||||
forc-test = { version = "0.58.0", path = "../../forc-test" }
|
||||
forc-pkg = { version = "0.59.0", path = "../../forc-pkg" }
|
||||
forc-test = { version = "0.59.0", path = "../../forc-test" }
|
||||
fuel-core-client = { workspace = true }
|
||||
fuel-types = { workspace = true, features = ["serde"] }
|
||||
fuel-vm = { workspace = true, features = ["serde"] }
|
||||
|
@ -21,8 +21,8 @@ rayon = "1.7.0"
|
|||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
shellfish = { version = "0.6.0", features = ["rustyline", "async", "tokio"] }
|
||||
sway-core = { version = "0.58.0", path = "../../sway-core" }
|
||||
sway-types = { version = "0.58.0", path = "../../sway-types" }
|
||||
sway-core = { version = "0.59.0", path = "../../sway-core" }
|
||||
sway-types = { version = "0.59.0", path = "../../sway-types" }
|
||||
thiserror = "1.0"
|
||||
tokio = { version = "1.8", features = [
|
||||
"net",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-doc"
|
||||
version = "0.58.0"
|
||||
version = "0.59.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
|
||||
|
@ -13,19 +13,19 @@ anyhow = "1.0.65"
|
|||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
colored = "2.0.0"
|
||||
comrak = "0.16"
|
||||
forc-pkg = { version = "0.58.0", path = "../../forc-pkg" }
|
||||
forc-util = { version = "0.58.0", path = "../../forc-util" }
|
||||
forc-pkg = { version = "0.59.0", path = "../../forc-pkg" }
|
||||
forc-util = { version = "0.59.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.58.0", path = "../../sway-ast" }
|
||||
sway-core = { version = "0.58.0", path = "../../sway-core" }
|
||||
sway-lsp = { version = "0.58.0", path = "../../sway-lsp" }
|
||||
sway-types = { version = "0.58.0", path = "../../sway-types" }
|
||||
swayfmt = { version = "0.58.0", path = "../../swayfmt" }
|
||||
sway-ast = { version = "0.59.0", path = "../../sway-ast" }
|
||||
sway-core = { version = "0.59.0", path = "../../sway-core" }
|
||||
sway-lsp = { version = "0.59.0", path = "../../sway-lsp" }
|
||||
sway-types = { version = "0.59.0", path = "../../sway-types" }
|
||||
swayfmt = { version = "0.59.0", path = "../../swayfmt" }
|
||||
|
||||
[dev-dependencies]
|
||||
dir_indexer = "0.0.2"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-fmt"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "A `forc` plugin for running the Sway code formatter."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -11,12 +11,12 @@ repository.workspace = true
|
|||
[dependencies]
|
||||
anyhow = "1"
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
forc-pkg = { version = "0.58.0", path = "../../forc-pkg" }
|
||||
forc-tracing = { version = "0.58.0", path = "../../forc-tracing" }
|
||||
forc-util = { version = "0.58.0", path = "../../forc-util" }
|
||||
forc-pkg = { version = "0.59.0", path = "../../forc-pkg" }
|
||||
forc-tracing = { version = "0.59.0", path = "../../forc-tracing" }
|
||||
forc-util = { version = "0.59.0", path = "../../forc-util" }
|
||||
prettydiff = "0.5"
|
||||
sway-core = { version = "0.58.0", path = "../../sway-core" }
|
||||
sway-utils = { version = "0.58.0", path = "../../sway-utils" }
|
||||
swayfmt = { version = "0.58.0", path = "../../swayfmt" }
|
||||
sway-core = { version = "0.59.0", path = "../../sway-core" }
|
||||
sway-utils = { version = "0.59.0", path = "../../sway-utils" }
|
||||
swayfmt = { version = "0.59.0", path = "../../swayfmt" }
|
||||
taplo = "0.7"
|
||||
tracing = "0.1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-lsp"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "A simple `forc` plugin for starting the sway language server."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -11,6 +11,6 @@ repository.workspace = true
|
|||
[dependencies]
|
||||
anyhow = "1"
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
sway-lsp = { version = "0.58.0", path = "../../sway-lsp" }
|
||||
sway-lsp = { version = "0.59.0", path = "../../sway-lsp" }
|
||||
tikv-jemallocator = "0.5"
|
||||
tokio = { version = "1.8" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "forc-tx"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
description = "A `forc` plugin for constructing transactions."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -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.58.0", path = "../../forc-util" }
|
||||
forc-util = { version = "0.59.0", path = "../../forc-util" }
|
||||
fuel-tx = { workspace = true, features = ["serde", "test-helpers", "random"] }
|
||||
fuel-types = { workspace = true, features = ["serde"] }
|
||||
serde = "1.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue