mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
f0d814fede
* Chore: remove random old test fixture from CLI * nuke oidc * remove weird useless desktop example * remove lua globals vscode setting for cli * remove cli testcase * hoist deps in core-macro * we dont need prettyplease * add hoisted dependencies * hoist more despt * rename rsx_rosetta to dioxus_rsx_rosetta * drop cache thrashing when listening for features * drop flag from mobile dep * drop cli-config warning * hoist more deps * clippy... * we dont use the tools module... * bump lock
33 lines
926 B
TOML
33 lines
926 B
TOML
[package]
|
|
name = "dioxus-core-macro"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
description = "Core macro for Dioxus Virtual DOM"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["full", "extra-traits", "visit"] }
|
|
dioxus-rsx = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
dioxus-html = { workspace = true, features = ["serialize"]}
|
|
rustversion = { workspace = true }
|
|
tokio = { workspace = true, features = ["full", "time"] }
|
|
trybuild = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|