#tags #reading #key #ap-ev2 #apev2-tags

ape

A library for reading and writing APEv2 tags

7 releases (4 breaking)

0.5.0 Jan 11, 2023
0.4.0 Jan 13, 2022
0.3.0 Mar 29, 2020
0.2.0 Dec 10, 2017
0.1.1 Jan 21, 2016

#267 in Audio

Download history 14/week @ 2024-03-28 26/week @ 2024-04-04 15/week @ 2024-04-11 15/week @ 2024-04-18 16/week @ 2024-04-25 7/week @ 2024-05-02 28/week @ 2024-05-09 12/week @ 2024-05-16 21/week @ 2024-05-23 15/week @ 2024-05-30 12/week @ 2024-06-06 8/week @ 2024-06-13 8/week @ 2024-06-20 15/week @ 2024-06-27 41/week @ 2024-07-04 13/week @ 2024-07-11

77 downloads per month

MIT license

39KB
790 lines

RUST-APE

A library for reading and writing APEv2 tags.

CI Status Downloads Documentation

Changelog

0.5.0 (11.01.2023)

  • Add support for multiple values under same key
    • Add Tag::items() method.
    • Add Tag::add_item() method.
    • Replace Tag::remove_item() by Tag::remove_items() method. Tag::item() method returns a first found item. Tag::set_item() removes all items under the given key and adds a new one.
  • Derive Clone for Item and ItemValue structs.

0.4.0 (13.01.2022)

  • Switched to 2021 edition.
  • Updated byteorder to 1.4
  • Support reading/writing/removing tags from opened files.
  • Case-insensitive key comparison.
  • Support writing an empty tag.

0.3.0 (29.03.2020)

  • Switched to 2018 edition.
  • Updated byteorder to 1.3
  • Fixed type parameters in Item::from_locator and Item::from_text.
  • Removed use of deprecated Error::description.
  • Lowercase error description.
  • Item::to_vec method is private now.
  • Removed items field from the Tag struct.
  • Added Tag::iter() method.
  • Added IntoIterator implementation for Tag struct.
  • Tag::write method replaced by write function.

0.2.0 (10.12.2017)

  • Use byteorder 1.0.0.

0.1.2 (18.05.2016)

  • Small internal improvements.

0.1.1 (21.01.2016)

  • Use Result<()> instead of Option<Error>.

0.1.0 (16.01.2016)

  • First release.

LICENSE

The MIT License (MIT)

Dependencies

~120KB