2021-01-20 17:04:27 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-core-macro"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2021-12-15 21:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-12-25 22:18:05 +00:00
|
|
|
edition = "2021"
|
2021-02-28 22:24:57 +00:00
|
|
|
description = "Core macro for Dioxus Virtual DOM"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-15 21:04:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
2023-01-10 16:16:11 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2021-01-20 17:04:27 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-28 17:10:32 +00:00
|
|
|
proc-macro2 = { version = "1.0" }
|
2021-01-20 17:04:27 +00:00
|
|
|
quote = "1.0"
|
2023-07-19 17:19:23 +00:00
|
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-rsx = { workspace = true }
|
2021-01-20 17:04:27 +00:00
|
|
|
|
|
|
|
# testing
|
|
|
|
[dev-dependencies]
|
2023-07-02 13:19:03 +00:00
|
|
|
dioxus = { workspace = true }
|
2021-01-20 17:04:27 +00:00
|
|
|
rustversion = "1.0"
|
|
|
|
trybuild = "1.0"
|
2022-05-25 13:58:59 +00:00
|
|
|
|
|
|
|
[features]
|
2022-05-28 17:10:32 +00:00
|
|
|
default = []
|