23 lines
625 B
TOML
23 lines
625 B
TOML
[package]
|
|
name = "maud_macros"
|
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
|
version = "0.21.0"
|
|
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 = "0.15.34"
|
|
matches = "0.1.6"
|
|
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
|
|
|
[lib]
|
|
name = "maud_macros"
|
|
proc-macro = true
|
|
|
|
[badges]
|
|
travis-ci = { repository = "lambda-fairy/maud" }
|