Skip to content

Commit 0fc19ef

Browse files
authored
Merge pull request #50 from dezoito/dev
Adds audit.toml file
2 parents 01ce261 + 99e3cc1 commit 0fc19ef

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src-tauri/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,3 @@ opt-level = 3
3939

4040
[profile.release]
4141
lto = true
42-
43-
[advisories]
44-
RUSTSEC-2023-0071 = "allow" # RSA vulnerability
45-
RUSTSEC-2024-0363 = "allow" # SQLx vulnerability

src-tauri/audit.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[advisories]
2+
ignore = [
3+
"RUSTSEC-2023-0071", # RSA vulnerability
4+
"RUSTSEC-2024-0363", # SQLx vulnerability
5+
]
6+
7+
# Optionally, you can also ignore unmaintained warnings
8+
[unmaintained]
9+
ignore = [
10+
"RUSTSEC-2024-0388", # derivative
11+
"RUSTSEC-2024-0384", # instant
12+
"RUSTSEC-2024-0370", # proc-macro-error
13+
]

0 commit comments

Comments
 (0)