[[bin]]
name = "mp3rgain"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.colored]
version = "2.0"
[dependencies.indicatif]
version = "0.17"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.symphonia]
default-features = false
features = ["mp3", "aac", "isomp4"]
optional = true
version = "0.5"
[features]
aac = ["symphonia-aac"]
default = ["replaygain"]
replaygain = ["symphonia"]
symphonia-aac = ["symphonia"]
[lib]
name = "mp3rgain"
path = "src/lib.rs"
[package]
authors = ["Masanari Higashi <M-Igashi@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia::audio", "command-line-utilities"]
description = "Lossless MP3 volume adjustment - a modern mp3gain replacement written in Rust"
edition = "2021"
homepage = "https://github.com/M-Igashi/mp3rgain"
keywords = ["mp3", "audio", "gain", "volume", "lossless"]
license = "MIT"
name = "mp3rgain"
readme = "README.md"
repository = "https://github.com/M-Igashi/mp3rgain"
version = "1.2.3"
[profile.release]
codegen-units = 1
lto = true
strip = true
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"