mirror of
https://github.com/PeacefulBeastGames/audible-util.git
synced 2025-12-13 06:04:32 +00:00
- Add Python parser example (python_parser.py) - Add simple JSON parser example (simple_json_parser.py) - Update README with comprehensive documentation - Enhance CLI functionality and main application logic - Update dependencies in Cargo.toml and Cargo.lock
22 lines
609 B
TOML
22 lines
609 B
TOML
[package]
|
|
name = "audible-util"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
description = "A utility for converting Audible .aaxc files to common audio formats (mp3, wav, flac), with optional splitting by chapters and machine-readable JSON output."
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
crossterm = "0.29"
|
|
Inflector = { version = "0.11", default-features = false }
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
indicatif = "0.18"
|
|
which = "8.0"
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
tempfile = "3.10"
|
|
predicates = "3.1"
|