dioxus/packages/core-macro/Cargo.toml

29 lines
617 B
TOML
Raw Normal View History

2021-01-20 17:04:27 +00:00
[package]
name = "dioxus-core-macro"
version = "0.3.0"
2021-12-15 21:04:27 +00:00
authors = ["Jonathan Kelley"]
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"
keywords = ["dom", "ui", "gui", "react"]
2021-01-20 17:04:27 +00:00
[lib]
proc-macro = true
[dependencies]
proc-macro2 = { version = "1.0" }
2021-01-20 17:04:27 +00:00
quote = "1.0"
syn = { version = "1.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]
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]
default = []