File tree Expand file tree Collapse file tree 3 files changed +21
-11
lines changed
Expand file tree Collapse file tree 3 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,11 @@ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
6666
6767[[package ]]
6868name = " askama"
69- version = " 0.14.0 "
69+ version = " 0.15.1 "
7070source = " registry+https://github.com/rust-lang/crates.io-index"
71- checksum = " f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4 "
71+ checksum = " bb7125972258312e79827b60c9eb93938334100245081cf701a2dee981b17427 "
7272dependencies = [
73- " askama_derive " ,
73+ " askama_macros " ,
7474 " itoa" ,
7575 " percent-encoding" ,
7676 " serde" ,
@@ -79,9 +79,9 @@ dependencies = [
7979
8080[[package ]]
8181name = " askama_derive"
82- version = " 0.14.0 "
82+ version = " 0.15.1 "
8383source = " registry+https://github.com/rust-lang/crates.io-index"
84- checksum = " 129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f "
84+ checksum = " 8ba5e7259a1580c61571e3116ebaaa01e3c001b2132b17c4cc5c70780ca3e994 "
8585dependencies = [
8686 " askama_parser" ,
8787 " basic-toml" ,
@@ -94,15 +94,25 @@ dependencies = [
9494 " syn" ,
9595]
9696
97+ [[package ]]
98+ name = " askama_macros"
99+ version = " 0.15.1"
100+ source = " registry+https://github.com/rust-lang/crates.io-index"
101+ checksum = " 236ce20b77cb13506eaf5024899f4af6e12e8825f390bd943c4c37fd8f322e46"
102+ dependencies = [
103+ " askama_derive" ,
104+ ]
105+
97106[[package ]]
98107name = " askama_parser"
99- version = " 0.14.0 "
108+ version = " 0.15.1 "
100109source = " registry+https://github.com/rust-lang/crates.io-index"
101- checksum = " d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358 "
110+ checksum = " f3c63392767bb2df6aa65a6e1e3b80fd89bb7af6d58359b924c0695620f1512e "
102111dependencies = [
103- " memchr " ,
112+ " rustc-hash " ,
104113 " serde" ,
105114 " serde_derive" ,
115+ " unicode-ident" ,
106116 " winnow" ,
107117]
108118
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ edition = "2024"
55
66[dependencies ]
77anyhow = " 1"
8- askama = " 0.14 "
8+ askama = " 0.15.1 "
99clap = { version = " 4.5" , features = [" derive" ] }
1010csv = " 1"
1111diff = " 0.1"
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ passed: {{ r.passed.len() }}, ignored: {{ r.ignored.len() }}
2424 {% for (name, test) in root_tests %}
2525 <li>
2626 {% if let Some(result) = test.single_test() %}
27- <b>{{ name }}</b> ({% call test_result(result) %})
27+ <b>{{ name }}</b> ({% call test_result(result) %}{% endcall %} )
2828 {% else %}
2929 <b>{{ name }}</b> ({{ test.revisions.len() }} revision{{ test.revisions.len() | pluralize }})
3030 <ul>
3131 {% for (revision, result) in test.revisions %}
32- <li>#<i>{{ revision }}</i> ({% call test_result(result) %})</li>
32+ <li>#<i>{{ revision }}</i> ({% call test_result(result) %}{% endcall %} )</li>
3333 {% endfor %}
3434 </ul>
3535 {% endif %}
You can’t perform that action at this time.
0 commit comments