Skye
f9df43f5e7
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.
12 lines
238 B
TOML
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"
|