From ea8d5c316f474ea3d15a9dfdf69688a7a44cd43e Mon Sep 17 00:00:00 2001 From: yggverse Date: Tue, 5 Aug 2025 20:39:14 +0300 Subject: [PATCH] remove deprecated options --- src/config.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/config.rs b/src/config.rs index 684b6a1..e3f1c28 100644 --- a/src/config.rs +++ b/src/config.rs @@ -95,19 +95,6 @@ pub struct Config { #[arg(long, default_value_t = 1000)] pub index_capacity: usize, - /// Index torrent files - #[arg(long, default_value_t = false)] - pub index_list: bool, - - /// Limit torrent files quantity to index - /// * insert the `...` placeholder as the last item, with total size left - #[arg(long, default_value_t = 100)] - pub index_list_limit: usize, - - /// Remove records from index older than `seconds` - #[arg(long)] - pub index_timeout: Option, - /// Max time to handle each torrent #[arg(long, default_value_t = 10)] pub add_torrent_timeout: u64,