cargo update, minor cleanup

This commit is contained in:
Lynne Megido 2021-02-12 19:19:08 +10:00
parent 578f2f6be5
commit 32ba0176b2
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
4 changed files with 4 additions and 4 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ fif_*
/old
/awful
*.sh
cargo-timing*.html

4
Cargo.lock generated
View File

@ -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"

View File

@ -36,7 +36,6 @@ version = "0.23.0"
default-features = false
features = ["proc_macro"]
[profile.release]
lto = "thin"

View File

@ -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,
}