Skip to content

Commit 623791d

Browse files
authored
Rollup merge of #93005 - GuillaumeGomez:templates-in-html, r=notriddle
Move back templates into html folder Follow-up of #92526. r? `@notriddle`
2 parents bcb093e + 48f5dca commit 623791d

File tree

6 files changed

+5
-1
lines changed

6 files changed

+5
-1
lines changed

Diff for: Cargo.lock

+2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ dependencies = [
152152
"nom",
153153
"proc-macro2",
154154
"quote",
155+
"serde",
155156
"syn",
157+
"toml",
156158
]
157159

158160
[[package]]

Diff for: src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ path = "lib.rs"
88

99
[dependencies]
1010
arrayvec = { version = "0.7", default-features = false }
11-
askama = { version = "0.11", default-features = false }
11+
askama = { version = "0.11", default-features = false, features = ["config"] }
1212
atty = "0.2"
1313
pulldown-cmark = { version = "0.9", default-features = false }
1414
minifier = "0.0.41"

Diff for: src/librustdoc/askama.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[general]
2+
dirs = ["html/templates"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)