25 lines
623 B
TOML
25 lines
623 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 }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.89"
|
|
proc-macro-crate = "3.2.0"
|
|
proc-macro-error = "1.0.4"
|
|
quote = "1.0.37"
|
|
syn = { version = "2.0.87", features = ["full"] }
|