chore: Remove unused dependency (#2466)

Removes the constcat dependeny from core-macro.
This commit is contained in:
airblast 2024-05-31 12:06:55 +00:00 committed by GitHub
parent e1b0e0425a
commit 0eb16f27d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 8 deletions

7
Cargo.lock generated
View file

@ -1582,12 +1582,6 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "constcat"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08"
[[package]]
name = "convert_case"
version = "0.4.0"
@ -2267,7 +2261,6 @@ dependencies = [
name = "dioxus-core-macro"
version = "0.5.2"
dependencies = [
"constcat",
"convert_case 0.6.0",
"dioxus",
"dioxus-rsx",

View file

@ -17,7 +17,6 @@ proc-macro2 = { version = "1.0" }
quote = { workspace = true }
syn = { workspace = true, features = ["full", "extra-traits", "visit"] }
dioxus-rsx = { workspace = true }
constcat = "0.3.0"
convert_case = "^0.6.0"
prettyplease = "0.2.15"