lofty-rs/Cargo.toml

26 lines
1,015 B
TOML
Raw Normal View History

2020-10-25 14:58:50 +00:00
[package]
name = "lofty"
version = "0.1.0"
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>", "Tianyi <ShiTianyi2001@outlook.com>"]
2020-10-25 14:58:50 +00:00
edition = "2018"
license = "MIT"
description = "Fork of https://github.com/TianyiShi2001/audiotags, adding support for more file types and (optionally) duration"
repository = "https://github.com/Serial-ATA/lofty"
keywords = ["tags", "audio", "metadata"]
categories = ["accessiblity", "multimedia::audio"]
2020-10-25 14:58:50 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
opus_headers = {version = "0.1.2", optional = true}
lewton = {version = "0.10.2", optional = true}
metaflac = {version = "0.2.4", optional = true}
mp4ameta = {version = "0.9.1", optional = true}
id3 = {version = "0.6.2", optional = true}
mp3-duration = {version = "0.1.10", optional = true}
thiserror = "1.0.24"
2020-10-29 18:01:21 +00:00
[features]
default = ["tags", "duration"]
tags = ["opus_headers", "lewton", "metaflac", "mp4ameta", "id3"]
duration = ["mp3-duration"]