subtitle-merge/Cargo.toml
Skye f9df43f5e7 Shell completions and refactors
Output shell completions with `clap_complete`, moving the cli args types into a new file `cli_args.rs`, and add them to the nix package defined in the flake output. Update clap to 4.5.21. Various minor refactors in main.rs, including a removal of `itertools` as a dependency.
2024-11-14 15:38:01 -05:00

12 lines
238 B
TOML

[package]
name = "subtitle-merge"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
[build-dependencies]
clap = { version = "4.5.21", features = ["derive"] }
clap_complete = "4.5.38"