blob: 20ef72a45c83ab888bae9a12d44cc4c7c5e50da4 (
plain) (
tree)
|
|
[package]
name = "askama_testing"
version = "0.1.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
workspace = ".."
edition = "2021"
rust-version = "1.65"
publish = false
[features]
default = ["serde-json", "markdown"]
serde-json = ["serde_json", "askama/serde-json"]
markdown = ["comrak", "askama/markdown"]
[dependencies]
askama = { path = "../askama", version = "0.12" }
comrak = { version = "0.20", default-features = false, optional = true }
phf = { version = "0.11", features = ["macros" ]}
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
criterion = "0.5"
trybuild = "1.0.76"
version_check = "0.9"
[[bench]]
name = "all"
harness = false
[[bench]]
name = "normalize_identifier"
harness = false
|