21 lines
539 B
TOML
21 lines
539 B
TOML
[package]
|
|
name = "poem-route-macro"
|
|
version = "1.0.0-beta.1"
|
|
authors = ["Blake Rain <blake.rain@blakerain.com>"]
|
|
description = "Simple macro for easier Poem route definition"
|
|
repository = "https://github.com/BlakeRain/poem-route-macro"
|
|
homepage = "https://github.com/BlakeRain/poem-route-macro"
|
|
readme = "README.md"
|
|
keywords = ["poem", "route", "macro"]
|
|
license = "BSD3"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "1.0" }
|
|
quote = { version = "1.0" }
|
|
syn = { version = "2.0", features = ["full"] }
|
|
|