implement print_version argument option

This commit is contained in:
yggverse 2025-08-06 14:09:17 +03:00
parent e493ecdc36
commit 4fd41feeaa
3 changed files with 11 additions and 1 deletions

View file

@ -42,6 +42,10 @@ pub struct Config {
#[arg(long, default_value_t = 20)]
pub list_limit: usize,
/// Show crate version in the catalog (tooltip to the GitHub link)
#[arg(long, default_value_t = true)]
pub print_version: bool,
/// Default capacity (estimated torrents in the `preload` directory)
#[arg(long, default_value_t = 1000)]
pub capacity: usize,