maud/maud_macros/Cargo.toml

24 lines
625 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
2019-07-01 21:03:44 +12:00
version = "0.21.0"
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."
2019-03-16 20:13:16 +13:00
edition = "2018"
2014-12-17 21:11:56 +13:00
2016-12-29 12:20:08 +13:00
[dependencies]
2019-05-18 03:44:43 +00:00
syn = "0.15.34"
matches = "0.1.6"
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
2014-12-17 21:11:56 +13:00
[lib]
2014-12-18 19:49:49 +13:00
name = "maud_macros"
proc-macro = true
2017-02-17 22:23:44 +13:00
[badges]
travis-ci = { repository = "lambda-fairy/maud" }