mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-15 08:57:08 +00:00
53 lines
No EOL
1.4 KiB
TOML
53 lines
No EOL
1.4 KiB
TOML
[package]
|
|
name = "lofty"
|
|
version = "0.3.0"
|
|
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Unified IO for different types of audio metadata"
|
|
repository = "https://github.com/Serial-ATA/lofty-rs"
|
|
keywords = ["tags", "audio", "metadata"]
|
|
categories = ["accessibility", "multimedia::audio"]
|
|
|
|
[dependencies]
|
|
# Id3
|
|
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
|
|
ogg_pager = { version = "0.1.7", optional = true }
|
|
# Mp4
|
|
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
|
|
thiserror = "1.0.26"
|
|
|
|
base64 = "0.13.0"
|
|
byteorder = "1.4.3"
|
|
cfg-if = "1.0.0"
|
|
|
|
[features]
|
|
default = ["mp4_atoms", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list", "quick_tag_accessors"]
|
|
mp4_atoms = []
|
|
vorbis_comments = ["ogg_pager"]
|
|
ape = []
|
|
id3v1 = []
|
|
id3v2 = []
|
|
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 |