maud/maud_macros/Cargo.toml

22 lines
542 B
TOML
Raw Normal View History

2014-12-17 21:11:56 +13:00
[package]
2014-12-18 19:49:49 +13:00
name = "maud_macros"
# When releasing a new version, please update html_root_url in src/lib.rs
2021-09-27 21:55:45 +10:00
version = "0.22.3"
2014-12-17 21:11:56 +13:00
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud_macros/"
2016-09-24 11:26:28 +12:00
homepage = "https://maud.lambda.xyz/"
repository = "https://github.com/lambda-fairy/maud"
2017-02-17 22:23:44 +13:00
description = "Compile-time HTML templates."
2021-11-01 17:18:48 +11:00
edition = "2021"
2014-12-17 21:11:56 +13:00
2016-12-29 12:20:08 +13:00
[dependencies]
syn = "1.0.8"
quote = "1.0.7"
proc-macro2 = "1.0.23"
proc-macro-error = "1.0.0"
2014-12-17 21:11:56 +13:00
[lib]
2014-12-18 19:49:49 +13:00
name = "maud_macros"
proc-macro = true