mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Chore: format some cargo tomls (#2970)
This commit is contained in:
parent
143ad749ea
commit
b67122dd2a
3 changed files with 5 additions and 5 deletions
|
@ -11,7 +11,7 @@ wasm-bindgen = { workspace = true }
|
||||||
dioxus-autofmt = { workspace = true }
|
dioxus-autofmt = { workspace = true }
|
||||||
dioxus-rsx-rosetta = { workspace = true }
|
dioxus-rsx-rosetta = { workspace = true }
|
||||||
html_parser = { workspace = true }
|
html_parser = { workspace = true }
|
||||||
syn ={ workspace = true }
|
syn = { workspace = true }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["cdylib", "rlib"]
|
crate-type = ["cdylib", "rlib"]
|
||||||
|
|
|
@ -13,7 +13,7 @@ keywords = ["generational", "box", "memory", "allocator"]
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.8.5"
|
rand = { workspace = true }
|
||||||
criterion = { workspace = true }
|
criterion = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0.66"
|
proc-macro2 = { workspace = true }
|
||||||
syn = { workspace = true, features = ["full"] }
|
syn = { workspace = true, features = ["full"] }
|
||||||
quote = "^1.0.26"
|
quote = { workspace = true }
|
||||||
convert_case = { workspace = true }
|
convert_case = { workspace = true }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
@ -25,4 +25,4 @@ name = "tests"
|
||||||
path = "tests/progress.rs"
|
path = "tests/progress.rs"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
trybuild = { version = "1.0.82", features = ["diff"] }
|
trybuild = { workspace = true, features = ["diff"] }
|
||||||
|
|
Loading…
Reference in a new issue