56 lines
1,005 B
TOML
56 lines
1,005 B
TOML
[package]
|
|
name = "musicutil"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"modules/taglib",
|
|
]
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# for decode/encoding yaml/json for transcode config & ffprobe output
|
|
serde = { version = "1.0.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1.0"
|
|
serde_with = "3"
|
|
|
|
# argument parsing
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
# ascii_reduce constants & transcode presets
|
|
lazy_static = "1"
|
|
|
|
# for scan_for_music
|
|
walkdir = "2"
|
|
|
|
# format detection
|
|
infer = "0.15"
|
|
bytes = "1"
|
|
|
|
# tag reading
|
|
id3 = "1"
|
|
metaflac = "0.2"
|
|
taglib = { path = "./modules/taglib", optional = true }
|
|
|
|
# for genhtml command
|
|
html-escape = "0.2"
|
|
urlencoding = "2"
|
|
|
|
# error handling
|
|
thiserror = "1"
|
|
string-error = "0.1"
|
|
|
|
# temporary file for transcode prefix file
|
|
tempfile = "3"
|
|
|
|
# for reading ffmpeg progress output file
|
|
notify = "6"
|
|
|
|
[features]
|
|
default = ["taglib"]
|
|
taglib = ["dep:taglib"]
|