Skip to content

Commit 70805a1

Browse files
committed
chore: update dependencies
1 parent 56f9288 commit 70805a1

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
version: 2
22
updates:
33
- package-ecosystem: "cargo"
4-
directory: "/"
4+
directories:
5+
- "/"
6+
- "bench-build"
7+
- "examples/*"
8+
- "fuzzing"
9+
- "fuzzing/fuzz"
510
schedule:
611
interval: "daily"
712

813
- package-ecosystem: "github-actions"
914
directory: "/"
1015
schedule:
1116
interval: "daily"
17+
18+
- package-ecosystem: "gitsubmodule"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"
22+
23+
- package-ecosystem: "pip"
24+
directory: "testing/jinja2-assumptions"
25+
schedule:
26+
interval: "weekly"

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ jobs:
281281
name: artifacts
282282
path: ./out/artifacts
283283
- name: Upload Sarif
284-
if: always() && steps.build.outcome == 'success'
284+
if: steps.build.outcome == 'success'
285285
uses: github/codeql-action/upload-sarif@v3
286286
with:
287287
sarif_file: cifuzz-sarif/results.sarif

examples/salvo-app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
# and salvo as your web-framework.
1010
[dependencies]
1111
askama = { version = "0.14.0", path = "../../askama" }
12-
salvo = { version = "0.78.0", default-features = false, features = ["http1", "logging", "server"] }
12+
salvo = { version = "0.83.0", default-features = false, features = ["http1", "logging", "server"] }
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414

1515
# serde and strum are used to parse (deserialize) and generate (serialize) information

examples/warp-app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ publish = false
99
# and actix-web as your web-framework.
1010
[dependencies]
1111
askama = { version = "0.14.0", path = "../../askama" }
12-
http = "0.2.12"
12+
http = "1.0"
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
14-
warp = "0.3.7"
14+
warp = { version = "0.4", features = ["server"] }
1515

1616
# serde and strum are used to parse (deserialize) and generate (serialize) information
1717
# between web requests, e.g. to share the selected display language.

0 commit comments

Comments
 (0)