2014-12-17 21:11:56 +13:00
|
|
|
[package]
|
2014-12-18 19:49:49 +13:00
|
|
|
name = "maud_macros"
|
2017-06-19 21:24:51 +12:00
|
|
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
2024-01-15 23:21:00 +11:00
|
|
|
version = "0.26.0"
|
2014-12-17 21:11:56 +13:00
|
|
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
|
|
license = "MIT/Apache-2.0"
|
2017-06-19 21:24:51 +12:00
|
|
|
documentation = "https://docs.rs/maud_macros/"
|
2016-09-24 11:26:28 +12:00
|
|
|
homepage = "https://maud.lambda.xyz/"
|
2019-09-14 13:48:59 +12:00
|
|
|
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]
|
2023-11-26 05:56:12 +01:00
|
|
|
syn = "2"
|
2020-07-12 11:42:14 +00:00
|
|
|
quote = "1.0.7"
|
2021-09-28 14:41:20 +02:00
|
|
|
proc-macro2 = "1.0.23"
|
2023-11-26 05:56:12 +01:00
|
|
|
proc-macro-error = { version = "1.0.0", default-features = false }
|
2014-12-17 21:11:56 +13:00
|
|
|
|
|
|
|
[lib]
|
2014-12-18 19:49:49 +13:00
|
|
|
name = "maud_macros"
|
2017-07-07 22:59:20 +12:00
|
|
|
proc-macro = true
|