-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 1.02 KB
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
[package]
name = "m4b-merge"
version = "1.0.1"
edition = "2024"
description = "A CLI tool which outputs consistently sorted, tagged, single m4b files"
authors = ["djdembeck"]
license = "GPL-3.0"
repository = "https://github.com/djdembeck/m4b-merge"
homepage = "https://github.com/djdembeck/m4b-merge"
rust-version = "1.85"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
tokio = { version = "1.13.1", features = ["rt-multi-thread", "macros", "fs", "io-util"] }
tokio-retry = "0.3"
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# ffmpeg-next = { version = "6.0", optional = true } # Requires FFmpeg development libraries (libavutil.pc, etc.)
mp4ameta = "0.13"
sanitize-filename = "0.5"
tempfile = "=3.27.0"
walkdir = "2.5"
natord = "1.0"
regex = "1.10"
[dev-dependencies]
tracing-test = "0.2"