mirror of
https://github.com/PeacefulBeastGames/audible-util.git
synced 2026-02-03 23:39:05 +00:00
- Add new dependencies: Inflector, crossterm, and related crates. - Implement ffprobe and ffmpeg command integration in src/main.rs. - Add models for chapters, ffprobe format, and voucher deserialization in src/models/chapters.rs, src/models/ffprobe_format.rs, and src/models/voucher.rs. - Create a module aggregator in src/models/mod.rs. - Update Cargo.toml and Cargo.lock for new dependencies.
13 lines
282 B
TOML
13 lines
282 B
TOML
[package]
|
|
name = "audible-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
crossterm = "0.28"
|
|
|
|
Inflector = { version = "0.11", default-features = false }
|