File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,7 @@ db-urls = ["https://github.com/rustsec/advisory-db"]
21
21
yanked = " deny"
22
22
# A list of advisory IDs to ignore. Note that ignored advisories will still
23
23
# 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 = []
29
25
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
30
26
# lower than the range specified will be ignored. Note that ignored advisories
31
27
# will still output a note when they are encountered.
@@ -59,7 +55,7 @@ allow = [
59
55
" ISC" ,
60
56
" OpenSSL" ,
61
57
" MPL-2.0" ,
62
- " Unicode-3.0"
58
+ " Unicode-3.0" ,
63
59
]
64
60
# The confidence threshold for detecting a license from license text.
65
61
# The higher the value, the more closely the license text must be to the
Original file line number Diff line number Diff line change @@ -516,7 +516,7 @@ mod socket_listener {
516
516
}
517
517
518
518
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) {
520
520
log_warn (
521
521
"close_socket" ,
522
522
format ! ( "Failed to remove socket directory: {err}" ) ,
You can’t perform that action at this time.
0 commit comments