lofty-rs/Cargo.toml

54 lines
1.4 KiB
TOML
Raw Normal View History

2020-10-25 14:58:50 +00:00
[package]
name = "lofty"
version = "0.3.0"
2021-08-18 22:46:07 +00:00
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
2020-10-25 14:58:50 +00:00
edition = "2018"
license = "MIT OR Apache-2.0"
2021-04-23 22:09:36 +00:00
description = "Unified IO for different types of audio metadata"
2021-04-04 02:56:28 +00:00
repository = "https://github.com/Serial-ATA/lofty-rs"
keywords = ["tags", "audio", "metadata"]
2021-04-23 17:37:10 +00:00
categories = ["accessibility", "multimedia::audio"]
2020-10-25 14:58:50 +00:00
[dependencies]
# Id3
2021-08-25 02:54:06 +00:00
flate2 = { version = "1.0.20", optional = true }
id3 = {version = "0.6.4", optional = true} # De/Encoding
filepath = { version = "0.1.1", optional = true } # wav/aiff only supports paths for some reason
# Ogg
2021-08-01 02:52:11 +00:00
ogg_pager = { version = "0.1.7", optional = true }
# Mp4
2021-07-20 01:01:00 +00:00
mp4ameta = {version = "0.11.0", optional = true}
# Case insensitive keys (APE/FLAC/Opus/Vorbis)
unicase = { version = "2.6.0"}
# Quick string accessor methods for Tag
paste = { version = "1.0.5", optional = true }
# Errors
2021-07-03 05:02:02 +00:00
thiserror = "1.0.26"
2021-04-24 01:15:33 +00:00
base64 = "0.13.0"
byteorder = "1.4.3"
cfg-if = "1.0.0"
2020-10-29 18:01:21 +00:00
[features]
default = ["mp4_atoms", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list", "quick_tag_accessors"]
2021-08-19 01:58:27 +00:00
mp4_atoms = []
vorbis_comments = ["ogg_pager"]
ape = []
id3v1 = []
2021-08-25 02:54:06 +00:00
id3v2 = ["flate2"]
2021-08-19 01:58:27 +00:00
aiff_text_chunks = []
riff_info_list = []
quick_tag_accessors = ["paste"]
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "read_from_extension"
harness = false
[[bench]]
name = "read_from_signature"
harness = false