mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
31 lines
859 B
TOML
31 lines
859 B
TOML
[package]
|
|
name = "dioxus-router-macro"
|
|
version = { workspace = true }
|
|
authors = ["Evan Almloff"]
|
|
edition = "2021"
|
|
description = "Macro for Dioxus Router"
|
|
license = "MIT OR 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 = { workspace = true, features = ["extra-traits", "full"] }
|
|
quote = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
slab = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true, features = ["router"] }
|
|
|
|
[features]
|
|
default = []
|
|
web = []
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|