2020-10-25 14:58:50 +00:00
|
|
|
[package]
|
2021-04-02 20:47:44 -04:00
|
|
|
name = "lofty"
|
2021-06-27 14:50:27 -04:00
|
|
|
version = "0.3.0"
|
2021-08-18 18:46:07 -04:00
|
|
|
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
2020-10-25 14:58:50 +00:00
|
|
|
edition = "2018"
|
2021-04-03 14:56:29 -04:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-04-23 18:09:36 -04:00
|
|
|
description = "Unified IO for different types of audio metadata"
|
2021-04-03 22:56:28 -04:00
|
|
|
repository = "https://github.com/Serial-ATA/lofty-rs"
|
2021-04-03 14:48:41 -04:00
|
|
|
keywords = ["tags", "audio", "metadata"]
|
2021-04-23 13:37:10 -04:00
|
|
|
categories = ["accessibility", "multimedia::audio"]
|
2020-10-25 14:58:50 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-20 23:24:59 -04:00
|
|
|
# Id3
|
2021-09-02 20:22:05 -04:00
|
|
|
flate2 = { version = "1.0.21", optional = true }
|
2021-04-15 13:26:06 -04:00
|
|
|
# Ogg
|
2021-07-31 22:52:11 -04:00
|
|
|
ogg_pager = { version = "0.1.7", optional = true }
|
2021-04-15 13:26:06 -04:00
|
|
|
# Mp4
|
2021-08-28 20:11:37 -04:00
|
|
|
simdutf8 = { version = "0.1.3", optional = true }
|
2021-08-19 18:01:53 -04:00
|
|
|
|
|
|
|
# Quick string accessor methods for Tag
|
|
|
|
paste = { version = "1.0.5", optional = true }
|
2021-07-31 21:33:52 -04:00
|
|
|
|
2021-04-23 21:15:33 -04:00
|
|
|
base64 = "0.13.0"
|
2021-04-17 15:42:06 -04:00
|
|
|
byteorder = "1.4.3"
|
2020-10-29 18:01:21 +00:00
|
|
|
|
|
|
|
[features]
|
2021-08-19 18:01:53 -04:00
|
|
|
default = ["mp4_atoms", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list", "quick_tag_accessors"]
|
2021-08-28 20:11:37 -04:00
|
|
|
mp4_atoms = ["simdutf8"]
|
2021-08-18 21:58:27 -04:00
|
|
|
vorbis_comments = ["ogg_pager"]
|
|
|
|
ape = []
|
|
|
|
id3v1 = []
|
2021-08-24 22:54:06 -04:00
|
|
|
id3v2 = ["flate2"]
|
2021-08-28 20:11:37 -04:00
|
|
|
id3v2_restrictions = []
|
2021-08-18 21:58:27 -04:00
|
|
|
aiff_text_chunks = []
|
|
|
|
riff_info_list = []
|
2021-08-19 18:01:53 -04:00
|
|
|
quick_tag_accessors = ["paste"]
|
2021-04-21 13:48:21 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-02 20:22:05 -04:00
|
|
|
criterion = { version = "0.3.5", features = ["html_reports"] }
|
2021-04-21 13:48:21 -04:00
|
|
|
|
|
|
|
[[bench]]
|
2021-08-24 23:37:32 -04:00
|
|
|
name = "read_file"
|
2021-09-02 20:22:05 -04:00
|
|
|
harness = false
|