Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lexi-the-cute committed Nov 20, 2024
1 parent c205f5b commit 52448d1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion client/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use build_info_build::DependencyDepth;
use std::env;
use std::path::PathBuf;

/// Main function
fn main() {
Expand Down
1 change: 0 additions & 1 deletion server/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use build_info_build::DependencyDepth;
use std::env;
use std::path::PathBuf;

/// Main function
fn main() {
Expand Down
1 change: 0 additions & 1 deletion utils/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use build_info_build::DependencyDepth;
use std::env;
use std::path::PathBuf;

/// Main function
fn main() {
Expand Down
6 changes: 3 additions & 3 deletions utils/src/args/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ pub struct Args {

/// Shows the AppImage help arguments
// https://github.com/clap-rs/clap/discussions/5401
#[cfg(all(feature = "appimage"))]
#[cfg(feature = "appimage")]
#[arg(long, default_value_t = false)]
pub appimage_help: bool,

/// Install the desktop files for launching from the application menu
#[cfg(all(target_os = "linux"))]
#[cfg(target_os = "linux")]
#[arg(long, default_value_t = false)]
pub install_desktop_files: bool,

/// Uninstall the previously installed desktop files
#[cfg(all(target_os = "linux"))]
#[cfg(target_os = "linux")]
#[arg(long, default_value_t = false)]
pub uninstall_desktop_files: bool,

Expand Down

0 comments on commit 52448d1

Please sign in to comment.