mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
27 lines
804 B
TOML
27 lines
804 B
TOML
[package]
|
|
name = "leptos_router_macro"
|
|
version = "0.8.4"
|
|
authors = ["Greg Johnston", "Ben Wishovich"]
|
|
license = "MIT"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Router utility macros for the Leptos web framework."
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro-error2 = { default-features = false, workspace = true }
|
|
proc-macro2 = { workspace = true, default-features = true }
|
|
quote = { workspace = true, default-features = true }
|
|
syn = { features = ["full"], workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
leptos_router = { path = "../router" }
|
|
leptos_macro = { path = "../leptos_macro" }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)'] }
|