fix(cli): re-enable clap help feature (#315)

Fixes #314
This commit is contained in:
Alex Pasmantier 2025-01-26 09:49:53 +01:00 committed by GitHub
parent 5271b507a0
commit 82f471d0aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 8 deletions

4
Cargo.lock generated
View File

@ -343,8 +343,10 @@ version = "4.5.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
dependencies = [ dependencies = [
"anstream",
"anstyle", "anstyle",
"clap_lex", "clap_lex",
"strsim",
] ]
[[package]] [[package]]
@ -1870,7 +1872,7 @@ dependencies = [
[[package]] [[package]]
name = "television" name = "television"
version = "0.10.0" version = "0.10.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bat", "bat",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "television" name = "television"
version = "0.10.0" version = "0.10.1"
edition = "2021" edition = "2021"
description = "The revolution will be televised." description = "The revolution will be televised."
license = "MIT" license = "MIT"
@ -40,12 +40,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rustc-hash = "2.1" rustc-hash = "2.1"
syntect = { version = "5.2", default-features = false } syntect = { version = "5.2", default-features = false }
unicode-width = "0.2" unicode-width = "0.2"
clap = { version = "4.5", default-features = false, features = [ clap = { version = "4.5", features = ["derive", "cargo", "string"] }
"std",
"derive",
"cargo",
"string",
] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
ratatui = { version = "0.29", features = ["serde", "macros"] } ratatui = { version = "0.29", features = ["serde", "macros"] }
better-panic = "0.3" better-panic = "0.3"