22 lines
612 B
TOML
22 lines
612 B
TOML
[package]
|
|
name = "maud_macros"
|
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
|
version = "0.22.2"
|
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
documentation = "https://docs.rs/maud_macros/"
|
|
homepage = "https://maud.lambda.xyz/"
|
|
repository = "https://github.com/lambda-fairy/maud"
|
|
description = "Compile-time HTML templates."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
syn = "1.0.8"
|
|
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
|
quote = "1.0.7"
|
|
proc-macro2 = "1.0.19"
|
|
proc-macro-error = "1.0.0"
|
|
|
|
[lib]
|
|
name = "maud_macros"
|
|
proc-macro = true
|