mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.6.0...0.7.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
853 B
TOML
34 lines
853 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 = "2024"
|
|
rust-version = "1.88"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
|
|
|
|
[[bench]]
|
|
name = "from_str"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
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.7"
|
|
|
|
[features]
|
|
config = ["dep:serde", "dep:serde_derive"]
|