lofty-rs/Cargo.toml

63 lines
1.6 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"
2023-04-10 14:26:59 +00:00
version = "0.12.1"
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"]
2022-12-27 20:56:05 +00:00
categories = ["multimedia::audio"]
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.0"
2022-10-15 14:57:34 +00:00
byteorder = "1.4.3"
2022-05-13 21:10:50 +00:00
# ID3 compressed frames
2022-12-27 20:47:59 +00:00
flate2 = { version = "1.0.25", optional = true }
# Proc macros
2023-01-29 17:38:51 +00:00
lofty_attr = "0.6.0"
# 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
2023-01-29 17:38:51 +00:00
ogg_pager = "0.5.0"
2021-12-23 15:00:54 +00:00
# Key maps
2022-12-27 20:47:59 +00:00
once_cell = "1.16.0"
paste = "1.0.11"
2020-10-29 18:01:21 +00:00
[features]
default = ["id3v2_compression_support"]
id3v2_compression_support = ["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 }
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"]