askama/testing/Cargo.toml
dependabot[bot] f0a1fa467d build(deps): update criterion requirement from 0.6 to 0.7
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>
2025-07-25 23:36:35 +02:00

37 lines
980 B
TOML

[package]
name = "askama_testing"
version = "0.14.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
publish = false
[[bench]]
name = "all"
harness = false
[dependencies]
askama = { path = "../askama", version = "0.14.0" }
serde_json = { version = "1.0", optional = true }
# intentionally shadow the name `::core` to test if the generated code still works fine
core = { package = "intentionally-empty", version = "1.0.0" }
[dev-dependencies]
askama = { path = "../askama", version = "0.14.0", features = ["blocks", "code-in-doc", "serde_json"] }
assert_matches = "1.5.0"
criterion = "0.7"
trybuild = "1.0.100"
[features]
default = ["blocks", "code-in-doc", "serde_json"]
blocks = ["askama/blocks"]
code-in-doc = ["askama/code-in-doc"]
serde_json = ["dep:serde_json", "askama/serde_json"]
[lints.rust]
# Set in `build.rs` if we are compiling in stable rust, used by `ui.rs`
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(RUN_UI_TESTS)'] }