22 lines
558 B
TOML
22 lines
558 B
TOML
[package]
|
|
name = "pagetop-macros"
|
|
version = "0.0.13"
|
|
edition = "2021"
|
|
|
|
description = "A collection of macros that boost PageTop development."
|
|
|
|
categories = ["development-tools::procedural-macro-helpers", "web-programming"]
|
|
keywords = ["pagetop", "macros", "proc-macros", "codegen"]
|
|
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
authors = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.89"
|
|
quote = "1.0.37"
|
|
syn = { version = "2.0.87", features = ["full"] }
|