* Add proc_macro2 and quote dependencies * Completly switch over to proc_macro2 where possible * Remove unessesary ::from casts * Remove pendantic cast that i missed * Make Builder::push_tokens accept TokenStream * Remove stray commented out code * Reword unclear comment on `Span` to a todo item * Move comment closer to its intended line * Use into instead of explicit conversion
25 lines
662 B
TOML
25 lines
662 B
TOML
[package]
|
|
name = "maud_macros"
|
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
|
version = "0.22.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 = "1.0.8"
|
|
matches = "0.1.8"
|
|
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
|
quote = "1.0.7"
|
|
proc-macro2 = "1.0.18"
|
|
|
|
[lib]
|
|
name = "maud_macros"
|
|
proc-macro = true
|
|
|
|
[badges]
|
|
travis-ci = { repository = "lambda-fairy/maud" }
|