diff --git a/Cargo.lock b/Cargo.lock index 5377990..283be87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1253,7 +1253,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5090db9c6a716d1f4eeb729957e889e9c28156061c825cbccd44950cf0f3c66" dependencies = [ "geo-types", - "nom", + "nom 7.1.3", ] [[package]] @@ -1420,16 +1420,25 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nom-exif" -version = "2.8.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d759833b65510dc55d774e34b7ef6665ffd293eae44844e189a9da2bea53d47a" +checksum = "0b1119c4c070d57fc82e59e06b8b995185f38b2afd56d437c88a04f1f233f390" dependencies = [ "bytes", "chrono", "iso6709parse", - "nom", + "nom 8.0.0", "regex", "thiserror 2.0.18", "tracing", @@ -1980,7 +1989,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326" dependencies = [ "base64 0.13.1", - "nom", + "nom 7.1.3", "serde", "unicode-segmentation", ] diff --git a/Cargo.toml b/Cargo.toml index 76ced1b..6dbca92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ chrono = "0.4.44" clap = "4.6.0" image = { version = "0.25.10", default-features = false } json = "0.12.4" -nom-exif = "2.8.0" +nom-exif = "3.6.0" regex = "1.12.3" reqwest = { version = "0.13.3", default-features = false, features = ["http2", "blocking", "json", "query"] } scan_dir = "0.3.3"