lofty-rs/Cargo.toml

72 lines
2 KiB
TOML
Raw Normal View History

2020-10-25 14:58:50 +00:00
[package]
2022-10-15 14:57:34 +00:00
name = "lofty"
2022-10-30 20:55:12 +00:00
version = "0.9.0"
2022-10-15 14:57:34 +00:00
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
2021-12-23 15:15:13 +00:00
description = "Audio metadata library"
2022-10-15 14:57:34 +00:00
repository = "https://github.com/Serial-ATA/lofty-rs"
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
categories = ["accessibility", "multimedia::audio"]
readme = "README.md"
2022-10-30 20:58:21 +00:00
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches", "SUPPORTED_FORMATS.md"]
2020-10-25 14:58:50 +00:00
[dependencies]
2021-12-23 15:00:54 +00:00
# Vorbis comments pictures
2022-10-15 14:57:34 +00:00
base64 = { version = "0.13.0", optional = true }
byteorder = "1.4.3"
2022-05-13 21:10:50 +00:00
# TODO: rustfmt only works with cfg_if for now (https://github.com/rust-lang/rustfmt/issues/3253)
2022-10-15 14:57:34 +00:00
cfg-if = "1.0.0"
2022-05-13 21:10:50 +00:00
# ID3 compressed frames
2022-10-15 14:57:34 +00:00
flate2 = { version = "1.0.24", optional = true }
# Proc macros
lofty_attr = { path = "lofty_attr" }
# Debug logging
2022-10-15 14:57:34 +00:00
log = "0.4.17"
2021-12-23 15:00:54 +00:00
# OGG Vorbis/Opus
ogg_pager = { path = "ogg_pager" }
2021-12-23 15:00:54 +00:00
# Key maps
2022-10-15 14:57:34 +00:00
once_cell = "1.13.0"
paste = "1.0.7"
2020-10-29 18:01:21 +00:00
[features]
2022-10-15 14:57:34 +00:00
default = ["mp4_ilst", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list"]
mp4_ilst = []
vorbis_comments = ["base64"]
ape = []
id3v1 = []
id3v2 = ["flate2"]
id3v2_restrictions = []
2022-10-15 14:57:34 +00:00
aiff_text_chunks = []
riff_info_list = []
[dev-dependencies]
2022-01-27 04:39:15 +00:00
# WAV properties validity tests
2022-10-15 14:57:34 +00:00
hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683dd6acb92df792683ee46ad6a59" }
2022-07-24 20:08:46 +00:00
# tag_writer example
structopt = { version = "0.3.26", default-features = false }
2022-10-15 14:57:34 +00:00
tempfile = "3.3.0"
# Pretty heavy dependency, we don't want this compiling for test/doc runs
[target.'cfg(bench)'.dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
2021-12-31 18:36:42 +00:00
[lib]
bench = false
[[bench]]
2022-10-15 14:57:34 +00:00
name = "read_file"
2021-09-03 00:22:05 +00:00
harness = false
2022-01-27 04:39:15 +00:00
[[bench]]
2022-10-15 14:57:34 +00:00
name = "create_tag"
2022-01-27 04:39:15 +00:00
harness = false
2022-02-04 02:55:36 +00:00
2022-07-24 20:08:46 +00:00
[[example]]
name = "custom_resolver"
path = "examples/custom_resolver/src/main.rs"
2022-02-04 02:55:36 +00:00
[package.metadata.docs.rs]
2022-02-04 05:59:20 +00:00
all-features = true
2022-09-24 06:34:22 +00:00
rustdoc-args = ["--cfg", "docsrs"]