From b67122dd2a82928a567e12bf50acea1898690fc0 Mon Sep 17 00:00:00 2001 From: Jonathan Kelley Date: Mon, 16 Sep 2024 16:58:19 -0700 Subject: [PATCH] Chore: format some cargo tomls (#2970) --- packages/extension/Cargo.toml | 2 +- packages/generational-box/Cargo.toml | 2 +- packages/html-internal-macro/Cargo.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/extension/Cargo.toml b/packages/extension/Cargo.toml index ed0c6584a..2ab7b947f 100644 --- a/packages/extension/Cargo.toml +++ b/packages/extension/Cargo.toml @@ -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"] diff --git a/packages/generational-box/Cargo.toml b/packages/generational-box/Cargo.toml index 2824e3eb3..419eb1704 100644 --- a/packages/generational-box/Cargo.toml +++ b/packages/generational-box/Cargo.toml @@ -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] diff --git a/packages/html-internal-macro/Cargo.toml b/packages/html-internal-macro/Cargo.toml index 9e4b39d89..2ca84157f 100644 --- a/packages/html-internal-macro/Cargo.toml +++ b/packages/html-internal-macro/Cargo.toml @@ -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"] }