diff --git a/benches/create_tag.rs b/benches/create_tag.rs index 3726da1a..47bd60fe 100644 --- a/benches/create_tag.rs +++ b/benches/create_tag.rs @@ -67,7 +67,7 @@ bench_tag_write!([ ); }), (id3v2, Id3v2Tag, |tag| { - use lofty::id3::v2::{Frame, FrameFlags, TextInformationFrame}; + use lofty::id3::v2::{Frame, TextInformationFrame}; use lofty::TextEncoding; let picture = Picture::new_unchecked( diff --git a/lofty/Cargo.toml b/lofty/Cargo.toml index b8c471ce..9937edbf 100644 --- a/lofty/Cargo.toml +++ b/lofty/Cargo.toml @@ -20,7 +20,7 @@ flate2 = { version = "1.0.30", optional = true } # Proc macros lofty_attr = "0.11.0" # Debug logging -log = "0.4.21" +log = "0.4.22" # OGG Vorbis/Opus ogg_pager = "0.6.1" # Key maps @@ -36,7 +36,7 @@ hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683d # tag_writer example structopt = { version = "0.3.26", default-features = false } tempfile = "3.10.1" -iai-callgrind = "0.11.0" +iai-callgrind = "0.12.0" [lints] workspace = true diff --git a/lofty_attr/Cargo.toml b/lofty_attr/Cargo.toml index 37de4e93..00a3cb0e 100644 --- a/lofty_attr/Cargo.toml +++ b/lofty_attr/Cargo.toml @@ -10,9 +10,9 @@ readme = "README.md" include = ["src", "Cargo.toml", "../LICENSE-*"] [dependencies] -syn = { version = "2.0.25", features = ["full", "parsing"] } -quote = "1.0.29" -proc-macro2 = "1.0.64" +syn = { version = "2.0.72", features = ["full", "parsing"] } +quote = "1.0.36" +proc-macro2 = "1.0.86" [lints] workspace = true