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

25 lines
634 B
TOML
Raw Normal View History

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