-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 902 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "headroom"
version = "1.7.1"
edition = "2021"
authors = ["Masanari Higashi"]
description = "Audio loudness analyzer and gain adjustment tool for mastering workflows"
license = "MIT"
repository = "https://github.com/M-Igashi/headroom"
keywords = ["audio", "loudness", "lufs", "mastering", "ffmpeg"]
categories = ["command-line-utilities", "multimedia::audio"]
[dependencies]
# CLI interaction
dialoguer = "0.11"
console = "0.15"
indicatif = "0.17"
# Data handling
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Parallel processing
rayon = "1.10"
# File system
walkdir = "2.4"
chrono = "0.4"
shellexpand = "3.1"
# MP3/AAC lossless gain adjustment
mp3rgain = { version = "2.0", default-features = false, features = ["aac"] }
[profile.release]
lto = "thin"
codegen-units = 1
strip = "debuginfo"