diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-11-14 15:57:22 +0100 |
---|---|---|
committer | Juan Aguilar <mhpoin@gmail.com> | 2018-11-14 16:18:19 +0100 |
commit | e7fde0733b25b9e404743b1a49e06b12a0371cb5 (patch) | |
tree | 331dc2290306499ce7ed7a6fa995e0fccc435186 /askama_escape/Cargo.toml | |
parent | ade72a0f9d815a37a8b027506201497dbdef74f6 (diff) | |
download | askama-e7fde0733b25b9e404743b1a49e06b12a0371cb5.tar.gz askama-e7fde0733b25b9e404743b1a49e06b12a0371cb5.tar.bz2 askama-e7fde0733b25b9e404743b1a49e06b12a0371cb5.zip |
Move escaping benchmarks into askama_escape crate
Diffstat (limited to '')
-rw-r--r-- | askama_escape/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml index 4df2a5f..ee84891 100644 --- a/askama_escape/Cargo.toml +++ b/askama_escape/Cargo.toml @@ -14,3 +14,10 @@ workspace = ".." appveyor = { repository = "djc/askama" } maintenance = { status = "actively-developed" } travis-ci = { repository = "djc/askama" } + +[dev-dependencies] +criterion = "0.2" + +[[bench]] +name = "all" +harness = false |