@@ -74,23 +74,23 @@ pub struct Args {
74
74
/// Exclude population
75
75
#[ arg( long, help_heading = "Config" ) ]
76
76
pub no_population : bool ,
77
- /// Exclude top-level domain
78
- #[ arg( long, help_heading = "Config" ) ]
79
- pub no_tld : bool ,
77
+ /// Exclude top-level domains
78
+ #[ arg( long, help_heading = "Config" , alias = "no-tld" ) ]
79
+ pub no_tlds : bool ,
80
80
/// Exclude languages
81
- #[ arg( long, help_heading = "Config" ) ]
81
+ #[ arg( long, help_heading = "Config" , alias = "no-language" ) ]
82
82
pub no_languages : bool ,
83
- /// Exclude currency
84
- #[ arg( long, help_heading = "Config" ) ]
85
- pub no_currency : bool ,
83
+ /// Exclude currencies
84
+ #[ arg( long, help_heading = "Config" , alias = "no-currency" ) ]
85
+ pub no_currencies : bool ,
86
86
/// Exclude neighbours
87
- #[ arg( long, help_heading = "Config" ) ]
87
+ #[ arg( long, help_heading = "Config" , aliases = [ "no-neighbour" , "no-neighbors" , "no-neighbor" ] ) ]
88
88
pub no_neighbours : bool ,
89
89
/// Exclude established date
90
90
#[ arg( long, help_heading = "Config" ) ]
91
91
pub no_established_date : bool ,
92
92
/// Exclude iso codes
93
- #[ arg( long, help_heading = "Config" ) ]
93
+ #[ arg( long, help_heading = "Config" , alias = "no-iso-code" ) ]
94
94
pub no_iso_codes : bool ,
95
95
/// Exclude driving side
96
96
#[ arg( long, help_heading = "Config" ) ]
0 commit comments