Skip to content

Commit

Permalink
Merge pull request #110 from EspressoSystems/ts/fix/cargo-toml-shorth…
Browse files Browse the repository at this point in the history
…ands

Fix `Cargo.toml` files so that `cargo-sort` for the precommit hooks
  • Loading branch information
Ayiga authored Sep 6, 2024
2 parents 8704dd1 + fa1894c commit 6df7e04
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions crates/legacy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
[package]
name = "hotshot-builder-core"
version.workspace = true
edition.workspace = true
version = { workspace = true }
edition = { workspace = true }

[dependencies]
hotshot = { workspace = true }
hotshot-builder-api = { workspace = true }
hotshot-events-service = { workspace = true }
hotshot-types = { workspace = true }

anyhow = { workspace = true }
async-broadcast = { workspace = true }
Expand All @@ -21,6 +17,10 @@ committable = { workspace = true }
derivative = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
hotshot = { workspace = true }
hotshot-builder-api = { workspace = true }
hotshot-events-service = { workspace = true }
hotshot-types = { workspace = true }
lru = { workspace = true }
serde = { workspace = true, features = ["derive"] }
sha2 = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions crates/marketplace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
[package]
name = "marketplace-builder-core"
version.workspace = true
edition.workspace = true
version = { workspace = true }
edition = { workspace = true }

[dependencies]
hotshot = { workspace = true }
hotshot-builder-api = { workspace = true }
hotshot-events-service = { workspace = true }
hotshot-task-impls = { workspace = true }
hotshot-types = { workspace = true }

anyhow = "1"
async-broadcast = "0.7"
Expand All @@ -22,7 +17,13 @@ derivative = { workspace = true }
either = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
hotshot = { workspace = true }
hotshot-builder-api = { workspace = true }
hotshot-events-service = { workspace = true }
hotshot-task-impls = { workspace = true }
hotshot-types = { workspace = true }
lru = { workspace = true }
multimap = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
sha2 = { workspace = true }
Expand All @@ -35,7 +36,6 @@ toml = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
vbs = { workspace = true }
multimap = { workspace = true }

[dev-dependencies]
hotshot-example-types = { workspace = true }
Expand Down

0 comments on commit 6df7e04

Please sign in to comment.