Skip to content

Commit f7de874

Browse files
authored
Unrolled build for #156127
Rollup merge of #156127 - GuillaumeGomez:update-askama, r=Urgau Update `askama` version to `0.16.0` New features and bugfixes. Full changelog is [here](https://github.com/askama-rs/askama/releases/tag/v0.16.0). r? @Urgau
2 parents 740679e + 45b9459 commit f7de874

6 files changed

Lines changed: 19 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
174174

175175
[[package]]
176176
name = "askama"
177-
version = "0.15.4"
177+
version = "0.16.0"
178178
source = "registry+https://github.com/rust-lang/crates.io-index"
179-
checksum = "08e1676b346cadfec169374f949d7490fd80a24193d37d2afce0c047cf695e57"
179+
checksum = "f1bf825125edd887a019d0a3a837dcc5499a68b0d034cc3eb594070c3e18addc"
180180
dependencies = [
181181
"askama_macros",
182182
"itoa",
@@ -187,12 +187,13 @@ dependencies = [
187187

188188
[[package]]
189189
name = "askama_derive"
190-
version = "0.15.4"
190+
version = "0.16.0"
191191
source = "registry+https://github.com/rust-lang/crates.io-index"
192-
checksum = "7661ff56517787343f376f75db037426facd7c8d3049cef8911f1e75016f3a37"
192+
checksum = "e1c7065972a130eafa84215f21352ae15b4a7393da48c1f5e103904490736738"
193193
dependencies = [
194194
"askama_parser",
195195
"basic-toml",
196+
"glob",
196197
"memchr",
197198
"proc-macro2",
198199
"quote",
@@ -204,24 +205,24 @@ dependencies = [
204205

205206
[[package]]
206207
name = "askama_macros"
207-
version = "0.15.4"
208+
version = "0.16.0"
208209
source = "registry+https://github.com/rust-lang/crates.io-index"
209-
checksum = "713ee4dbfd1eb719c2dab859465b01fa1d21cb566684614a713a6b7a99a4e47b"
210+
checksum = "0e23b1d2c4bd39a41971f6124cef4cc6fd0540913ecb90919b69ab3bbe44ae1a"
210211
dependencies = [
211212
"askama_derive",
212213
]
213214

214215
[[package]]
215216
name = "askama_parser"
216-
version = "0.15.4"
217+
version = "0.16.0"
217218
source = "registry+https://github.com/rust-lang/crates.io-index"
218-
checksum = "1d62d674238a526418b30c0def480d5beadb9d8964e7f38d635b03bf639c704c"
219+
checksum = "7db09fde9143e7ac4513358fb32ee32847125b63b18ea715afd487956da715da"
219220
dependencies = [
220221
"rustc-hash 2.1.1",
221222
"serde",
222223
"serde_derive",
223224
"unicode-ident",
224-
"winnow 0.7.13",
225+
"winnow 1.0.0",
225226
]
226227

227228
[[package]]
@@ -756,7 +757,7 @@ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
756757
dependencies = [
757758
"serde",
758759
"termcolor",
759-
"unicode-width 0.1.14",
760+
"unicode-width 0.2.2",
760761
]
761762

762763
[[package]]
@@ -6625,6 +6626,9 @@ name = "winnow"
66256626
version = "1.0.0"
66266627
source = "registry+https://github.com/rust-lang/crates.io-index"
66276628
checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
6629+
dependencies = [
6630+
"memchr",
6631+
]
66286632

66296633
[[package]]
66306634
name = "winsplit"

src/bootstrap/src/utils/proc_macro_deps.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ pub static CRATES: &[&str] = &[
2222
"fnv",
2323
"foldhash",
2424
"generic-array",
25+
"glob",
2526
"hashbrown",
2627
"heck",
2728
"ident_case",

src/ci/citool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
anyhow = "1"
8-
askama = "0.15.4"
8+
askama = "0.16.0"
99
clap = { version = "4.5", features = ["derive"] }
1010
csv = "1"
1111
diff = "0.1"

src/librustdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
[dependencies]
1111
# tidy-alphabetical-start
1212
arrayvec = { version = "0.7", default-features = false }
13-
askama = { version = "0.15.4", default-features = false, features = ["alloc", "config", "derive"] }
13+
askama = { version = "0.16.0", default-features = false, features = ["alloc", "config", "derive"] }
1414
base64 = "0.21.7"
1515
indexmap = { version = "2", features = ["serde"] }
1616
itertools = "0.12"

src/tools/clippy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ walkdir = "2.3"
4242
filetime = "0.2.9"
4343
itertools = "0.12"
4444
pulldown-cmark = { version = "0.11", default-features = false, features = ["html"] }
45-
askama = { version = "0.15.4", default-features = false, features = ["alloc", "config", "derive"] }
45+
askama = { version = "0.16.0", default-features = false, features = ["alloc", "config", "derive"] }
4646

4747
[dev-dependencies.toml]
4848
version = "0.9.7"

src/tools/generate-copyright/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Produces a manifest of all the copyrighted materials in the Rust
88

99
[dependencies]
1010
anyhow = "1.0.65"
11-
askama = "0.15.4"
11+
askama = "0.16.0"
1212
cargo_metadata = "0.21"
1313
serde = { version = "1.0.147", features = ["derive"] }
1414
serde_json = "1.0.85"

0 commit comments

Comments
 (0)