mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
24 lines
628 B
TOML
24 lines
628 B
TOML
[package]
|
|
name = "dioxus-router-macro"
|
|
version = "0.3.0"
|
|
authors = ["Evan Almloff"]
|
|
edition = "2021"
|
|
description = "Macro for Dioxus Router"
|
|
license = "MIT/Apache-2.0"
|
|
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]
|
|
syn = { version = "1.0.11", features = ["extra-traits", "full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0.56"
|
|
slab = "0.4"
|
|
|
|
[features]
|
|
default = []
|