dioxus/packages/router-macro/Cargo.toml

32 lines
859 B
TOML
Raw Normal View History

2023-05-12 14:18:55 +00:00
[package]
name = "dioxus-router-macro"
version = { workspace = true }
2023-05-12 14:18:55 +00:00
authors = ["Evan Almloff"]
edition = "2021"
description = "Macro for Dioxus Router"
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]
2024-03-12 20:39:42 +00:00
syn = { workspace = true, features = ["extra-traits", "full"] }
quote = { workspace = true }
proc-macro2 = { workspace = true }
slab = { workspace = true }
2023-05-12 14:18:55 +00:00
2024-04-17 22:08:38 +00:00
[dev-dependencies]
dioxus = { workspace = true, features = ["router"] }
2023-05-12 14:18:55 +00:00
[features]
default = []
web = []
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]