2021-01-20 17:04:27 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-core-macro"
|
2022-03-09 19:24:05 +00:00
|
|
|
version = "0.2.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-02-22 21:34:06 +00:00
|
|
|
proc-macro-error = "1"
|
2021-06-01 22:33:15 +00:00
|
|
|
proc-macro2 = { version = "1.0.6" }
|
2021-01-20 17:04:27 +00:00
|
|
|
quote = "1.0"
|
2021-06-01 22:33:15 +00:00
|
|
|
syn = { version = "1.0.11", features = ["full", "extra-traits"] }
|
2022-04-24 06:35:52 +00:00
|
|
|
dioxus-rsx = { path = "../rsx" }
|
2021-01-20 17:04:27 +00:00
|
|
|
|
|
|
|
# testing
|
|
|
|
[dev-dependencies]
|
|
|
|
rustversion = "1.0"
|
|
|
|
trybuild = "1.0"
|