2023-05-12 14:18:55 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-router-macro"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2023-05-12 14:18:55 +00:00
|
|
|
authors = ["Evan Almloff"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Macro for Dioxus Router"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-05-12 14:18:55 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
|
|
|
keywords = ["dom", "ui", "gui", "react", "router"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-19 17:19:23 +00:00
|
|
|
syn = { version = "2.0", features = ["extra-traits", "full"] }
|
2023-05-12 14:18:55 +00:00
|
|
|
quote = "1.0"
|
|
|
|
proc-macro2 = "1.0.56"
|
2023-05-20 21:32:48 +00:00
|
|
|
slab = "0.4"
|
2023-05-12 14:18:55 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|