diff --git a/Cargo.lock b/Cargo.lock index 7a3f50eb..71917e68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2468,9 +2468,9 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jiff" -version = "0.1.19" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "943611a469f78ab9afdac9022e473a80fca16a9deca6c5be3eb566d872231e76" +checksum = "ed0ce60560149333a8e41ca7dc78799c47c5fd435e2bc18faf6a054382eec037" dependencies = [ "jiff-tzdb-platform", "js-sys", @@ -2685,8 +2685,9 @@ dependencies = [ [[package]] name = "lofty" -version = "0.21.1" -source = "git+https://github.com/Serial-ATA/lofty-rs?branch=main#dd4e926db4eaec593b051c34717a7fbae162397f" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e50322c6dc739042a87fde4a5a16c80c9ed94fb0f04912f9660d409167da37fe" dependencies = [ "byteorder", "data-encoding", @@ -3322,8 +3323,9 @@ dependencies = [ [[package]] name = "ogg_pager" -version = "0.6.1" -source = "git+https://github.com/Serial-ATA/lofty-rs?branch=main#dd4e926db4eaec593b051c34717a7fbae162397f" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e034c10fb5c1c012c1b327b85df89fb0ef98ae66ec28af30f0d1eed804a40c19" dependencies = [ "byteorder", ] @@ -4261,9 +4263,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.94" +version = "2.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3" +checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a" dependencies = [ "proc-macro2", "quote", @@ -5600,9 +5602,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winit" -version = "0.30.7" +version = "0.30.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dba50bc8ef4b6f1a75c9274fb95aa9a8f63fbc66c56f391bd85cf68d51e7b1a3" +checksum = "f5d74280aabb958072864bff6cfbcf9025cf8bfacdde5e32b5e12920ef703b0f" dependencies = [ "ahash", "android-activity", @@ -5647,9 +5649,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.6.21" +version = "0.6.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6f5bb5257f2407a5425c6e749bfd9692192a73e70a6060516ac04f889087d68" +checksum = "39281189af81c07ec09db316b302a3e67bf9bd7cbf6c820b50e35fee9c2fa980" dependencies = [ "memchr", ] diff --git a/Cargo.toml b/Cargo.toml index bcb3e276..4fcfe1da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ derive_more = "1.0.0" diesel = { version = "2.2.6", default-features = false, features = ["sqlite"] } digest = "0.10.7" image = "0.25.5" -jiff = "0.1.19" +jiff = "0.1.21" log = "0.4.22" mime = "0.3.17" nonicle = "0.1.1" diff --git a/crates/media-file/Cargo.toml b/crates/media-file/Cargo.toml index d62cc328..9cbdf759 100644 --- a/crates/media-file/Cargo.toml +++ b/crates/media-file/Cargo.toml @@ -24,9 +24,9 @@ data-encoding.workspace = true digest.workspace = true image = { workspace = true, features = ["default-formats"] } kmeans_colors = { version = "0.6.0", default-features = false, features = ["palette_color"] } -#lofty = "0.22.0" +lofty = "0.22.0" # Use main branch of lofty-rs for testing unreleased features. -lofty = { git = "https://github.com/Serial-ATA/lofty-rs", branch = "main" } +#lofty = { git = "https://github.com/Serial-ATA/lofty-rs", branch = "main" } log.workspace = true mime.workspace = true mime_guess = "2.0.5"