Skip to content

Commit bbd633d

Browse files
author
avifenesh
committed
Clear ignored advisories in deny.toml and update license allowance
Signed-off-by: avifenesh <[email protected]>
1 parent adb117c commit bbd633d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

deny.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ db-urls = ["https://github.com/rustsec/advisory-db"]
2121
yanked = "deny"
2222
# A list of advisory IDs to ignore. Note that ignored advisories will still
2323
# output a note when they are encountered.
24-
ignore = [
25-
# suppress this validation until #3226 not resolved
26-
# https://github.com/valkey-io/valkey-glide/issues/3226
27-
"RUSTSEC-2025-0007",
28-
]
24+
ignore = []
2925
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
3026
# lower than the range specified will be ignored. Note that ignored advisories
3127
# will still output a note when they are encountered.
@@ -59,7 +55,7 @@ allow = [
5955
"ISC",
6056
"OpenSSL",
6157
"MPL-2.0",
62-
"Unicode-3.0"
58+
"Unicode-3.0",
6359
]
6460
# The confidence threshold for detecting a license from license text.
6561
# The higher the value, the more closely the license text must be to the

glide-core/tests/test_socket_listener.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ mod socket_listener {
516516
}
517517

518518
pub fn close_socket(socket_path: &String) {
519-
if let Err(err) = std::fs::remove_file(&socket_path) {
519+
if let Err(err) = std::fs::remove_file(socket_path) {
520520
log_warn(
521521
"close_socket",
522522
format!("Failed to remove socket directory: {err}"),

0 commit comments

Comments
 (0)