lofty-rs/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2020-10-25 14:58:50 +00:00
[package]
name = "lofty"
2022-01-09 15:10:05 +00:00
version = "0.3.3"
2021-08-18 22:46:07 +00:00
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
2021-12-23 15:00:54 +00:00
edition = "2021"
license = "MIT OR Apache-2.0"
2021-12-23 15:15:13 +00:00
description = "Audio metadata library"
2021-04-04 02:56:28 +00:00
repository = "https://github.com/Serial-ATA/lofty-rs"
2022-01-02 22:26:30 +00:00
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
2021-04-23 17:37:10 +00:00
categories = ["accessibility", "multimedia::audio"]
2020-10-25 14:58:50 +00:00
[dependencies]
2021-12-23 15:00:54 +00:00
# ID3 compressed frames
2021-12-23 17:51:21 +00:00
flate2 = { version = "1.0.22", optional = true }
2021-12-23 15:00:54 +00:00
# Vorbis comments pictures
base64 = { version = "0.13.0", optional = true }
# OGG Vorbis/Opus
2022-01-08 12:18:06 +00:00
ogg_pager = "0.2.0"
2021-12-23 15:00:54 +00:00
# Key maps
2021-12-21 22:28:18 +00:00
lazy_static = "1.4.0"
2021-12-23 17:51:25 +00:00
paste = "1.0.6"
byteorder = "1.4.3"
2020-10-29 18:01:21 +00:00
[features]
2021-12-05 22:02:22 +00:00
default = ["mp4_ilst", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list"]
2021-12-11 03:09:11 +00:00
mp4_ilst = []
2021-12-23 15:00:54 +00:00
vorbis_comments = ["base64"]
2021-08-19 01:58:27 +00:00
ape = []
id3v1 = []
2021-08-25 02:54:06 +00:00
id3v2 = ["flate2"]
id3v2_restrictions = []
2021-08-19 01:58:27 +00:00
aiff_text_chunks = []
riff_info_list = []
[dev-dependencies]
2021-09-03 00:22:05 +00:00
criterion = { version = "0.3.5", features = ["html_reports"] }
2022-01-08 20:05:05 +00:00
tempfile = "3.3.0"
2021-12-23 15:00:54 +00:00
# tag_writer example
structopt = { version = "0.3.25", default-features = false }
2021-12-31 18:36:42 +00:00
[lib]
bench = false
[[bench]]
2021-08-25 03:37:32 +00:00
name = "read_file"
2021-09-03 00:22:05 +00:00
harness = false