From 01ce2616c010e6b670d5981cb97f036b3e3a218d Mon Sep 17 00:00:00 2001 From: dezoito Date: Sun, 24 Nov 2024 22:11:19 -0300 Subject: [PATCH] feature/sql: Adds temporary allow rules for cargo audit, until there is a fix for the RSA issues --- src-tauri/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a178061..edbf966 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -39,3 +39,7 @@ opt-level = 3 [profile.release] lto = true + +[advisories] +RUSTSEC-2023-0071 = "allow" # RSA vulnerability +RUSTSEC-2024-0363 = "allow" # SQLx vulnerability