Skip to content

Commit

Permalink
Fix Cargo dependency sort order (#6179)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfiedotwtf committed Sep 6, 2024
1 parent c1d2db3 commit bf22cfa
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ futures.workspace = true
hex.workspace = true
rand.workspace = true
rpassword.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_json.workspace = true
sway-core.workspace = true
sway-types.workspace = true
sway-utils.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ futures.workspace = true
hex.workspace = true
libp2p-identity = { workspace = true, features = ["peerid", "secp256k1"] }
rand.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
serde.workspace = true
sha3.workspace = true
termion.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "process"] }
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fuel-core-client.workspace = true
fuel-types = { workspace = true, features = ["serde"] }
fuel-vm = { workspace = true, features = ["serde"] }
rayon.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_json.workspace = true
shellfish = { workspace = true, features = ["async", "rustyline", "tokio"] }
sway-core.workspace = true
sway-types.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-doc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ horrorshow.workspace = true
include_dir.workspace = true
minifier.workspace = true
opener.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_json.workspace = true
sway-ast.workspace = true
sway-core.workspace = true
sway-lsp.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion forc-plugins/forc-tx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ devault.workspace = true
forc-util.workspace = true
fuel-tx = { workspace = true, features = ["random", "serde", "test-helpers"] }
fuel-types = { workspace = true, features = ["serde"] }
serde_json.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
2 changes: 1 addition & 1 deletion forc-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository.workspace = true

[dependencies]
ansi_term.workspace = true
tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "json"] }
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "json"] }

[dev-dependencies]
tracing-test = "0.2"
2 changes: 1 addition & 1 deletion forc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ annotate-snippets.workspace = true
ansi_term.workspace = true
anyhow.workspace = true
clap = { workspace = true, features = ["cargo", "derive", "env"] }
clap_complete_fig.workspace = true
clap_complete.workspace = true
clap_complete_fig.workspace = true
forc-pkg.workspace = true
forc-test.workspace = true
forc-tracing.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion scripts/mdbook-forc-documenter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ anyhow.workspace = true
clap = { workspace = true, features = ["derive"] }
mdbook = { workspace = true, default-features = false }
semver.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_json.workspace = true
2 changes: 1 addition & 1 deletion sway-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ lazy_static.workspace = true
miden-core.workspace = true
object = { workspace = true, features = ["write"] }
parking_lot.workspace = true
pest_derive.workspace = true
pest.workspace = true
pest_derive.workspace = true
petgraph.workspace = true
rustc-hash.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion sway-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ forc-tracing.workspace = true
forc-util.workspace = true
indexmap = { workspace = true, features = ["rayon"] }
lsp-types = { workspace = true, features = ["proposed"] }
notify-debouncer-mini.workspace = true
notify.workspace = true
notify-debouncer-mini.workspace = true
parking_lot.workspace = true
proc-macro2.workspace = true
quote.workspace = true
Expand Down

0 comments on commit bf22cfa

Please sign in to comment.