mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00

* Update version-incompatible dependencies in examples. * Update version-incompatible dev-dependencies. * Replaced deprecated `criterion::black_box`. * Add `features = "simd"` to `winnow`. This adds a transitive dependency to `memchr`, on which we already depend on directly.
35 lines
866 B
TOML
35 lines
866 B
TOML
[package]
|
|
name = "askama_parser"
|
|
version = "0.14.0"
|
|
description = "Parser for Askama templates"
|
|
documentation = "https://docs.rs/askama"
|
|
keywords = ["markup", "template", "jinja2", "html"]
|
|
categories = ["template-engine"]
|
|
homepage = "https://github.com/askama-rs/askama"
|
|
repository = "https://github.com/askama-rs/askama"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.83"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
|
|
|
|
[[bench]]
|
|
name = "from_str"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
memchr = "2"
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
unicode-ident = "1.0.12"
|
|
winnow = { version = "0.7.0", features = ["simd"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.6"
|
|
|
|
[features]
|
|
config = ["dep:serde", "dep:serde_derive"]
|