musicutil/Cargo.toml

57 lines
1 KiB
TOML
Raw Normal View History

2022-08-16 09:05:18 +01:00
[package]
name = "musicutil"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"modules/taglib",
]
2022-08-16 09:05:18 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-10-22 15:15:37 +01:00
# for decode/encoding yaml/json for transcode config & ffprobe output
2022-08-16 09:05:18 +01:00
serde = { version = "1.0.143", features = ["derive"] }
serde_yaml = "0.9.9"
serde_json = "1.0"
serde_with = "1.3.1"
2022-10-22 15:15:37 +01:00
# argument parsing
clap = { version = "3.2.17", features = ["derive"] }
# ascii_reduce constants & transcode presets
2022-08-16 09:05:18 +01:00
lazy_static = "1.4.0"
2022-10-22 15:15:37 +01:00
# for scan_for_music
2022-08-16 09:05:18 +01:00
walkdir = "2.3.2"
2022-10-22 15:15:37 +01:00
# format detection
infer = "0.12.0"
bytes = "1.3.0"
2022-10-22 15:15:37 +01:00
# tag reading
2022-10-22 21:01:36 +01:00
id3 = "1.3.0"
metaflac = "0.2.5"
taglib = { path = "./modules/taglib", optional = true }
2022-10-22 15:15:37 +01:00
# for genhtml command
2022-08-16 09:05:18 +01:00
html-escape = "0.2.11"
2022-10-22 15:15:37 +01:00
# error handling
thiserror = "1.0"
2022-08-16 09:05:18 +01:00
string-error = "0.1.0"
2022-10-22 15:15:37 +01:00
# temporary file for transcode prefix file
2022-08-16 09:05:18 +01:00
tempfile = "3"
2022-10-22 15:15:37 +01:00
# for reading ffmpeg progress output file
2022-08-16 09:05:18 +01:00
notify = "4.0.17"
2022-10-22 15:15:37 +01:00
# scoped threads
crossbeam = "0.8"
[features]
default = ["taglib"]
taglib = ["dep:taglib"]