mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
General review of dependencies, removing ones that are not used and bumping up minor versions to avoid breakage. Consistent use of caret so that we use the most recent minor/patch version of a dependency when building Yew crates.
22 lines
476 B
TOML
22 lines
476 B
TOML
[package]
|
|
name = "yew-router-macro"
|
|
version = "0.15.0"
|
|
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Contains macros used with yew-router"
|
|
repository = "https://github.com/yewstack/yew"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = ["full","extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
rustversion = "1"
|
|
trybuild = "1"
|
|
yew-router = { path = "../yew-router" }
|