mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
10e2fe35b5
Also specify the paths of the benchmarks, since publishing breaks when it cannot find them.
64 lines
1.7 KiB
TOML
64 lines
1.7 KiB
TOML
[package]
|
|
name = "lofty"
|
|
version = "0.17.0"
|
|
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Audio metadata library"
|
|
repository = "https://github.com/Serial-ATA/lofty-rs"
|
|
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
|
|
categories = ["multimedia", "multimedia::audio", "parser-implementations"]
|
|
readme = "README.md"
|
|
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "SUPPORTED_FORMATS.md"]
|
|
|
|
[dependencies]
|
|
# Vorbis comments pictures
|
|
base64 = "0.21.5"
|
|
byteorder = "1.5.0"
|
|
# ID3 compressed frames
|
|
flate2 = { version = "1.0.28", optional = true }
|
|
# Proc macros
|
|
lofty_attr = "0.9.0"
|
|
# Debug logging
|
|
log = "0.4.20"
|
|
# OGG Vorbis/Opus
|
|
ogg_pager = "0.5.0"
|
|
# Key maps
|
|
once_cell = "1.18.0"
|
|
paste = "1.0.14"
|
|
|
|
[features]
|
|
default = ["id3v2_compression_support"]
|
|
id3v2_compression_support = ["dep:flate2"]
|
|
|
|
[dev-dependencies]
|
|
# WAV properties validity tests
|
|
hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683dd6acb92df792683ee46ad6a59" }
|
|
# 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"] }
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "read_file"
|
|
path = "benches/read_file.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "create_tag"
|
|
path = "benches/create_tag.rs"
|
|
harness = false
|
|
|
|
[[example]]
|
|
name = "custom_resolver"
|
|
path = "examples/custom_resolver/src/main.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|