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