[package]
edition = "2024"
rust-version = "1.88"
name = "askama_macros"
version = "0.15.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macro package for Askama"
homepage = "https://github.com/askama-rs/askama"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/askama-rs/askama"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--generate-link-to-definition",
"--cfg=docsrs",
]
[features]
alloc = ["askama_derive/alloc"]
code-in-doc = ["askama_derive/code-in-doc"]
config = ["askama_derive/config"]
default = [
"config",
"derive",
"std",
"urlencode",
]
derive = []
full = [
"default",
"code-in-doc",
"serde_json",
]
nightly-spans = ["askama_derive/nightly-spans"]
serde_json = ["askama_derive/serde_json"]
std = ["askama_derive/std"]
urlencode = ["askama_derive/urlencode"]
[lib]
name = "askama_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.askama_derive]
version = "=0.15.4"
features = [
"external-sources",
"proc-macro",
]
default-features = false
package = "askama_derive"