Chore: format some cargo tomls (#2970)

This commit is contained in:
Jonathan Kelley 2024-09-16 16:58:19 -07:00 committed by GitHub
parent 143ad749ea
commit b67122dd2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -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"]

View file

@ -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]

View file

@ -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]
@ -25,4 +25,4 @@ name = "tests"
path = "tests/progress.rs"
[dev-dependencies]
trybuild = { version = "1.0.82", features = ["diff"] }
trybuild = { workspace = true, features = ["diff"] }