cargo update, minor cleanup
This commit is contained in:
parent
578f2f6be5
commit
32ba0176b2
4 changed files with 4 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ fif_*
|
|||
/old
|
||||
/awful
|
||||
*.sh
|
||||
cargo-timing*.html
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -345,9 +345,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.85"
|
||||
version = "0.2.86"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3"
|
||||
checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
|
||||
|
||||
[[package]]
|
||||
name = "log"
|
||||
|
|
|
@ -36,7 +36,6 @@ version = "0.23.0"
|
|||
default-features = false
|
||||
features = ["proc_macro"]
|
||||
|
||||
|
||||
[profile.release]
|
||||
lto = "thin"
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ use crate::scanerror::ScanError;
|
|||
use crate::formats::{Script, Format};
|
||||
|
||||
pub struct Findings {
|
||||
file: PathBuf,
|
||||
file: PathBuf, // TODO: replace with Path???? <'a> and all that
|
||||
valid: bool,
|
||||
mime: Mime,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue