Skip to content

Commit

Permalink
Chore: format some cargo tomls (#2970)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp authored Sep 16, 2024
1 parent 143ad74 commit b67122d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wasm-bindgen = { workspace = true }
dioxus-autofmt = { workspace = true }
dioxus-rsx-rosetta = { workspace = true }
html_parser = { workspace = true }
syn ={ workspace = true }
syn = { workspace = true }

[lib]
crate-type = ["cdylib", "rlib"]
2 changes: 1 addition & 1 deletion packages/generational-box/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["generational", "box", "memory", "allocator"]
parking_lot = "0.12.1"

[dev-dependencies]
rand = "0.8.5"
rand = { workspace = true }
criterion = { workspace = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions packages/html-internal-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ description = "HTML function macros for Dioxus"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.66"
proc-macro2 = { workspace = true }
syn = { workspace = true, features = ["full"] }
quote = "^1.0.26"
quote = { workspace = true }
convert_case = { workspace = true }

[lib]
Expand All @@ -25,4 +25,4 @@ name = "tests"
path = "tests/progress.rs"

[dev-dependencies]
trybuild = { version = "1.0.82", features = ["diff"] }
trybuild = { workspace = true, features = ["diff"] }

0 comments on commit b67122d

Please sign in to comment.