dioxus/packages/native-core-macro/Cargo.toml

27 lines
722 B
TOML
Raw Normal View History

2022-04-09 02:17:37 +00:00
[package]
name = "dioxus-native-core-macro"
version = "0.2.0"
edition = "2021"
2022-05-03 04:02:09 +00:00
description = "Build natively rendered apps with Dioxus"
license = "MIT/Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react"]
2022-05-03 04:02:09 +00:00
2022-04-09 02:17:37 +00:00
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = { version = "1.0.11", features = ["extra-traits"] }
quote = "1.0"
2022-05-03 04:03:31 +00:00
dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
dioxus = { path = "../dioxus" }
2022-04-16 17:23:31 +00:00
2022-12-09 22:18:37 +00:00
[dev-dependencies]
2022-04-16 17:23:31 +00:00
smallvec = "1.6"
rustc-hash = "1.1.0"
anymap = "0.12.1"