Skip to content

Commit

Permalink
chore: run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 23, 2024
1 parent d0e2280 commit a6398df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/client/desktop.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::fs::write;
use home::home_dir;
use std::fs::write;

/// Makes a desktop file for the application
pub fn make_desktop_file(file_name: &str, full_path: &str) {
Expand Down
2 changes: 1 addition & 1 deletion src/client/icon.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::fs::File;
use pelite::{FileMap, PeFile};
use std::fs::File;
use std::io::Cursor;

/// Given an .exe file, return the first .ico file inside it
Expand Down
6 changes: 3 additions & 3 deletions src/server.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::net::SocketAddrV4;
use std::process::{Command, Output};
use axum::extract::Json;
use axum::routing::post;
use axum::Router;
use serde::Serialize;
use serde::Deserialize;
use serde::Serialize;
use std::net::SocketAddrV4;
use std::process::{Command, Output};

#[derive(Serialize, Deserialize)]
pub struct Options {
Expand Down

0 comments on commit a6398df

Please sign in to comment.