Skip to content

Commit 0b54abb

Browse files
authored
feat(rust): Ignore RUSTSEC-2025-0067 and RUSTSEC-2025-0068 (#456)
* fixing rust-toolchain files * ignore 'unsound' * update deny.toml * wip
1 parent 52b5a37 commit 0b54abb

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

earthly/rust/stdcfgs/deny.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ targets = [
1616

1717
[advisories]
1818
version = 2
19-
ignore = []
19+
ignore = [
20+
"RUSTSEC-2025-0067",
21+
"RUSTSEC-2025-0068",
22+
]
2023

2124
[bans]
2225
multiple-versions = "warn"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.88"
2+
channel = "1.89"
33
profile = "default"

examples/rust/deny.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ targets = [
1616

1717
[advisories]
1818
version = 2
19-
ignore = []
19+
ignore = [
20+
"RUSTSEC-2025-0067",
21+
"RUSTSEC-2025-0068",
22+
]
2023

2124
[bans]
2225
multiple-versions = "warn"

examples/rust/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.88"
2+
channel = "1.89"
33
profile = "default"

0 commit comments

Comments
 (0)