diff --git a/Cargo.lock b/Cargo.lock index b31bea2..cba9f38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4506,12 +4506,13 @@ checksum = "bc1ee6eef34f12f765cb94725905c6312b6610ab2b0940889cfe58dae7bc3c72" [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", diff --git a/core/Cargo.toml b/core/Cargo.toml index a5d9605..0e4a520 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -27,7 +27,7 @@ rusqlite = { version = "0.31.0", features = ["bundled", "chrono"] } rust-faces = {git = "https://github.com/blissd/fotema-rust-faces.git", tag = "v1.0.0", features = ["viz"]} sm_motion_photo = "0.1.5" strum = { version = "0.26.2", features = ["derive"] } -tempfile = "3.14.0" +tempfile = "3.15.0" tracing = "0.1.41" walkdir = "2.5.0" opencv = {version = "0.93.5", default-features = false, features = ["clang-runtime", "objdetect", "imgcodecs", "dnn"]}