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

update all the deps #6190

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
2,512 changes: 1,701 additions & 811 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 1 addition & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ members = [
"swayfmt",
"test",
]
exclude = [
"examples/*",
"swayfmt/test_macros",
"forc-test/test_data"
]
exclude = ["examples/*", "swayfmt/test_macros", "forc-test/test_data"]

[workspace.dependencies]
# Dependencies from the `fuel-core` repository:
Expand Down Expand Up @@ -60,4 +56,3 @@ authors = ["Fuel Labs <contact@fuel.sh>"]
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/sway"

24 changes: 12 additions & 12 deletions forc-pkg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@ repository.workspace = true
[dependencies]
ansi_term = "0.12"
anyhow = "1"
cid = "0.10"
cid = "0.11"
forc-tracing = { version = "0.61.0", path = "../forc-tracing" }
forc-util = { version = "0.61.0", path = "../forc-util" }
fuel-abi-types = { workspace = true }
futures = "0.3"
git2 = { version = "0.17.2", features = [
git2 = { version = "0.19.0", features = [
"vendored-libgit2",
"vendored-openssl",
] }
gix-url = { version = "0.16.0", features = ["serde1"] }
gix-url = { version = "0.27.3", features = ["serde"] }
hex = "0.4.3"
ipfs-api-backend-hyper = { version = "0.6", features = ["with-builder"] }
petgraph = { version = "0.6", features = ["serde-1"] }
reqwest = "0.11.7"
reqwest = "0.12.5"
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_ignored = "0.1.9"
serde_ignored = "0.1.10"
serde_json = "1.0"
serde_with = "3.3.0"
serde_with = "3.8.1"
sway-core = { version = "0.61.0", path = "../sway-core" }
sway-error = { version = "0.61.0", path = "../sway-error" }
sway-types = { version = "0.61.0", path = "../sway-types" }
sway-utils = { version = "0.61.0", path = "../sway-utils" }
tar = "0.4.38"
toml = { version = "0.7", features = ["parse"] }
tar = "0.4.41"
toml = { version = "0.8", features = ["parse"] }
tracing = "0.1"
url = { version = "2.2", features = ["serde"] }
vec1 = "1.8.0"
url = { version = "2.5", features = ["serde"] }
vec1 = "1.12.1"
walkdir = "2"

[dev-dependencies]
regex = "^1.10.2"
regex = "^1.10.5"

[target.'cfg(not(target_os = "macos"))'.dependencies]
sysinfo = "0.29.0"
sysinfo = "0.30.12"
10 changes: 5 additions & 5 deletions forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository.workspace = true

[dependencies]
anyhow = "1"
async-trait = "0.1.58"
async-trait = "0.1.80"
chrono = { version = "0.4", default-features = false, features = ["std"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
devault = "0.1"
clap = { version = "4.5.7", features = ["derive", "env"] }
devault = "0.2"
forc = { version = "0.61.0", path = "../../forc" }
forc-pkg = { version = "0.61.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.61.0", path = "../../forc-tracing" }
Expand All @@ -31,13 +31,13 @@ fuels-core = { workspace = true }
futures = "0.3"
hex = "0.4.3"
rand = "0.8"
rpassword = "7.2"
rpassword = "7.3"
serde = "1.0"
serde_json = "1"
sway-core = { version = "0.61.0", path = "../../sway-core" }
sway-types = { version = "0.61.0", path = "../../sway-types" }
sway-utils = { version = "0.61.0", path = "../../sway-utils" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
tokio = { version = "1.38", features = ["macros", "rt-multi-thread", "process"] }
tracing = "0.1"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-client/src/util/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use anyhow::{Error, Result};
use async_trait::async_trait;
use forc_tracing::println_warning;

use fuel_crypto::{Message, PublicKey, SecretKey, Signature};
use fuel_crypto::{secp256::PublicKey, secp256::SecretKey, Message, Signature};
use fuel_tx::{field, Address, Buildable, ContractId, Input, Output, TransactionBuilder, Witness};
use fuels_accounts::{provider::Provider, wallet::Wallet, ViewOnlyAccount};
use fuels_core::types::{
Expand Down
14 changes: 7 additions & 7 deletions forc-plugins/forc-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ license.workspace = true
repository.workspace = true

[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.58"
anyhow = "1.0.86"
async-trait = "0.1.80"
atty = "0.2.14"
clap = { version = "4.5.4", features = ["derive", "env"] }
clap = { version = "4.5.7", features = ["derive", "env"] }
forc-tracing = { version = "0.61.0", path = "../../forc-tracing" }
forc-util = { version = "0.61.0", path = "../../forc-util" }
fuel-core-types = { workspace = true }
fuel-crypto = { workspace = true, features = ["random"] }
fuels-core = { workspace = true }
futures = "0.3"
hex = "0.4.3"
libp2p-identity = { version = "0.2.4", features = ["secp256k1", "peerid"] }
libp2p-identity = { version = "0.2.9", features = ["secp256k1", "peerid"] }
rand = "0.8"
serde = "1.0"
serde_json = "1"
serde_yaml = "0.9.27"
serde_yaml = "0.9.34"
sha3 = "0.10.8"
termion = "2.0.1"
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
termion = "4.0.2"
tokio = { version = "1.38", features = ["macros", "rt-multi-thread", "process"] }
tracing = "0.1"
12 changes: 6 additions & 6 deletions forc-plugins/forc-debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ repository.workspace = true

[dependencies]
anyhow = "1.0" # Used by the examples and for conversion only
clap = { version = "4.5.4", features = ["derive", "env"] }
clap = { version = "4.5.7", features = ["derive", "env"] }
dap = "0.4.1-alpha1"
forc-pkg = { version = "0.61.0", path = "../../forc-pkg" }
forc-test = { version = "0.61.0", path = "../../forc-test" }
forc-tracing = { version = "0.61.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"
rayon = "1.10.0"
serde = "1.0"
serde_json = "1.0"
shellfish = { version = "0.6.0", features = ["rustyline", "async", "tokio"] }
shellfish = { version = "0.9.0", features = ["rustyline", "async", "tokio"] }
sway-core = { version = "0.61.0", path = "../../sway-core" }
sway-types = { version = "0.61.0", path = "../../sway-types" }
thiserror = "1.0"
tokio = { version = "1.8", features = [
tokio = { version = "1.38", features = [
"net",
"io-util",
"macros",
Expand All @@ -34,6 +34,6 @@ tokio = { version = "1.8", features = [

[dev-dependencies]
dap = { version = "0.4.1-alpha1", features = ["client"] }
escargot = "0.5.7"
escargot = "0.5.11"
portpicker = "0.1.1"
rexpect = "0.4"
rexpect = "0.5"
14 changes: 7 additions & 7 deletions forc-plugins/forc-doc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ license.workspace = true
repository.workspace = true

[dependencies]
anyhow = "1.0.65"
clap = { version = "4.5.4", features = ["derive"] }
colored = "2.0.0"
comrak = "0.16"
anyhow = "1.0.86"
clap = { version = "4.5.7", features = ["derive"] }
colored = "2.1.0"
comrak = "0.24"
forc-pkg = { version = "0.61.0", path = "../../forc-pkg" }
forc-util = { version = "0.61.0", path = "../../forc-util" }
horrorshow = "0.8.4"
include_dir = "0.7.3"
include_dir = "0.7.4"
minifier = "0.3.0"
opener = "0.5.0"
opener = "0.7.1"
serde = "1.0"
serde_json = "1.0"
sway-ast = { version = "0.61.0", path = "../../sway-ast" }
Expand All @@ -29,4 +29,4 @@ swayfmt = { version = "0.61.0", path = "../../swayfmt" }

[dev-dependencies]
dir_indexer = "0.0.2"
expect-test = "1.4.1"
expect-test = "1.5.0"
6 changes: 3 additions & 3 deletions forc-plugins/forc-fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ repository.workspace = true

[dependencies]
anyhow = "1"
clap = { version = "4.5.4", features = ["derive"] }
clap = { version = "4.5.7", features = ["derive"] }
forc-pkg = { version = "0.61.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.61.0", path = "../../forc-tracing" }
forc-util = { version = "0.61.0", path = "../../forc-util" }
prettydiff = "0.5"
prettydiff = "0.7"
sway-core = { version = "0.61.0", path = "../../sway-core" }
sway-utils = { version = "0.61.0", path = "../../sway-utils" }
swayfmt = { version = "0.61.0", path = "../../swayfmt" }
taplo = "0.7"
taplo = "0.13"
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
Expand Up @@ -10,7 +10,7 @@ repository.workspace = true

[dependencies]
anyhow = "1"
clap = { version = "4.5.4", features = ["derive"] }
clap = { version = "4.5.7", features = ["derive"] }
sway-lsp = { version = "0.61.0", path = "../../sway-lsp" }
tikv-jemallocator = "0.5"
tokio = { version = "1.8" }
tokio = { version = "1.38" }
4 changes: 2 additions & 2 deletions forc-plugins/forc-tx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ path = "src/main.rs"

[dependencies]
anyhow = "1"
clap = { version = "4.5.4", features = ["derive", "env"] }
devault = "0.1"
clap = { version = "4.5.7", features = ["derive", "env"] }
devault = "0.2"
forc-util = { version = "0.61.0", path = "../../forc-util" }
fuel-tx = { workspace = true, features = ["serde", "test-helpers", "random"] }
fuel-types = { workspace = true, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion forc-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ 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"
rayon = "1.10.0"
sway-core = { version = "0.61.0", path = "../sway-core" }
sway-types = { version = "0.61.0", path = "../sway-types" }
16 changes: 8 additions & 8 deletions forc-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ license.workspace = true
repository.workspace = true

[dependencies]
annotate-snippets = { version = "0.10.1" }
annotate-snippets = { version = "0.11.4" }
ansi_term = "0.12"
anyhow = "1"
clap = { version = "4.5.4", features = ["cargo", "derive", "env"] }
dirs = "3.0.2"
clap = { version = "4.5.7", features = ["cargo", "derive", "env"] }
dirs = "5.0.1"
fd-lock = "4.0"
forc-tracing = { version = "0.61.0", path = "../forc-tracing" }
fuel-tx = { workspace = true, features = ["serde"], optional = true }
hex = "0.4.3"
paste = "1.0.14"
regex = "1.10.2"
paste = "1.0.15"
regex = "1.10.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.73"
serial_test = "3.0.0"
serde_json = "1.0.118"
serial_test = "3.1.1"
sway-core = { version = "0.61.0", path = "../sway-core" }
sway-error = { version = "0.61.0", path = "../sway-error" }
sway-types = { version = "0.61.0", path = "../sway-types" }
Expand All @@ -33,7 +33,7 @@ tracing-subscriber = { version = "0.3", features = [
"env-filter",
"json",
] }
unicode-xid = "0.2.2"
unicode-xid = "0.2.4"

[features]
default = ["fuel-tx"]
Loading
Loading