lofty-rs/Cargo.toml

63 lines
1.7 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"
version = "0.17.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 = ["multimedia", "multimedia::audio", "parser-implementations"]
2022-10-15 14:57:34 +00:00
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
base64 = "0.21.5"
byteorder = "1.5.0"
2022-05-13 21:10:50 +00:00
# ID3 compressed frames
flate2 = { version = "1.0.28", optional = true }
# Proc macros
2023-07-11 22:48:23 +00:00
lofty_attr = "0.9.0"
# Debug logging
2023-10-01 15:02:41 +00:00
log = "0.4.20"
2021-12-23 15:00:54 +00:00
# OGG Vorbis/Opus
2023-01-29 17:38:51 +00:00
ogg_pager = "0.5.0"
2021-12-23 15:00:54 +00:00
# Key maps
2023-06-08 18:32:09 +00:00
once_cell = "1.18.0"
2023-10-01 15:02:41 +00:00
paste = "1.0.14"
2020-10-29 18:01:21 +00:00
[features]
default = ["id3v2_compression_support"]
2023-06-08 18:32:09 +00:00
id3v2_compression_support = ["dep:flate2"]
[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 }
tempfile = "3.8.1"
# Pretty heavy dependency, we don't want this compiling for test/doc runs
[target.'cfg(bench)'.dev-dependencies]
criterion = { version = "0.5.1", 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"]