2021-01-20 17:04:27 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-core-macro"
|
2021-02-28 22:37:17 +00:00
|
|
|
version = "0.1.1"
|
2021-01-20 17:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-02-28 22:24:57 +00:00
|
|
|
description = "Core macro for Dioxus Virtual DOM"
|
|
|
|
"license" = "MIT/Apache-2.0"
|
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]
|
2021-07-20 23:03:49 +00:00
|
|
|
once_cell = "1.8"
|
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"] }
|
2021-01-20 17:04:27 +00:00
|
|
|
|
|
|
|
# testing
|
|
|
|
[dev-dependencies]
|
|
|
|
rustversion = "1.0"
|
|
|
|
trybuild = "1.0"
|