2021-01-20 17:04:27 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-core-macro"
|
2023-01-04 19:31:07 +00:00
|
|
|
version = "0.3.0"
|
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"
|
2021-12-15 21:04:27 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
2021-12-15 21:06:13 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2021-01-20 17:04:27 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[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"
|
2022-05-28 17:10:32 +00:00
|
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
2023-01-04 19:31:07 +00:00
|
|
|
dioxus-rsx = { path = "../rsx", version = "0.0.2" }
|
2021-01-20 17:04:27 +00:00
|
|
|
|
|
|
|
# testing
|
|
|
|
[dev-dependencies]
|
|
|
|
rustversion = "1.0"
|
|
|
|
trybuild = "1.0"
|
2022-05-25 13:58:59 +00:00
|
|
|
|
|
|
|
[features]
|
2022-05-28 17:10:32 +00:00
|
|
|
default = []
|