mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
cea9563e25
* Do the stuff * More sanitizing + fix warnings and format
31 lines
711 B
TOML
31 lines
711 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 = { version = "1.0" }
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
|
dioxus-rsx = { workspace = true }
|
|
dioxus-core = { workspace = true }
|
|
constcat = "0.3.0"
|
|
prettyplease = "0.2.15"
|
|
|
|
# testing
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
rustversion = "1.0"
|
|
trybuild = "1.0"
|
|
|
|
[features]
|
|
default = []
|