Skip to content

Commit 392dde8

Browse files
committed
fix(rust/signed-doc): make deny.toml and nextest.toml same as catalyst-ci
1 parent d674b2c commit 392dde8

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

rust/.config/nextest.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,14 @@ store-success-output = true
4747
# Note that if a description can be extracted from the output, it is always stored in the
4848
# <description> element.
4949
store-failure-output = true
50+
51+
[test-groups]
52+
serial-integration = { max-threads = 1 }
53+
54+
[[profile.default.overrides]]
55+
filter = 'test(/^serial::/)'
56+
test-group = 'serial-integration'
57+
58+
[[profile.ci.overrides]]
59+
filter = 'test(/^serial::/)'
60+
test-group = "serial-integration"

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"

0 commit comments

Comments
 (0)