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

25 lines
634 B
TOML
Raw Normal View History

2022-04-08 21:17:37 -05:00
[package]
name = "dioxus-native-core-macro"
version = { workspace = true }
2022-04-08 21:17:37 -05:00
edition = "2021"
2022-05-03 00:02:09 -04:00
description = "Build natively rendered apps with Dioxus"
license = "MIT OR Apache-2.0"
2022-05-03 00:02:09 -04:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react"]
2023-07-31 17:30:18 -07:00
authors = ["Jonathan Kelley", "Evan Almloff"]
2022-05-03 00:02:09 -04:00
2022-04-08 21:17:37 -05:00
[lib]
proc-macro = true
[dependencies]
2023-07-19 10:19:23 -07:00
syn = { version = "2.0", features = ["extra-traits", "full"] }
2022-04-08 21:17:37 -05:00
quote = "1.0"
2022-04-16 12:23:31 -05:00
2022-12-09 16:18:37 -06:00
[dev-dependencies]
2022-04-16 12:23:31 -05:00
smallvec = "1.6"
2023-06-19 14:29:11 -05:00
rustc-hash = { workspace = true }
anymap = "0.12.1"
2023-06-19 14:29:11 -05:00
dioxus = { workspace = true }
dioxus-native-core = { workspace = true }