diff --git a/Cargo.toml b/Cargo.toml index 9e95a76e..ea5faba6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,8 @@ format-vorbis = ["lewton", "ogg"] format-ape = ["ape", "filepath"] format-id3 = ["id3"] format-riff = ["riff"] -all_tags = ["format-vorbis", "format-opus", "format-flac", "format-mp4", "format-id3", "format-riff", "format-ape"] +format-ogg = ["format-flac", "format-opus", "format-vorbis"] +all_tags = ["format-ogg", "format-mp4", "format-id3", "format-riff", "format-ape"] duration = ["mp3-duration"] [dev-dependencies] diff --git a/src/lib.rs b/src/lib.rs index 50f566e5..bce59545 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,6 +86,11 @@ //! * `format-vorbis` //! * `format-riff` //! +//! ## Umbrella features +//! These cover all formats under a container format. +//! +//! * `format-ogg` (`format-opus`, `format-vorbis`, `format-flac`) +//! //! ## Performance //! //! Using lofty incurs a little overhead due to vtables if you want to guess the metadata format (from file extension).