Skip to content

Commit

Permalink
Merge pull request #63 from RickyDane/feature/tar
Browse files Browse the repository at this point in the history
Dependencies fix
  • Loading branch information
RickyDane committed Mar 4, 2024
2 parents a3fede2 + 5c0c862 commit 9bcf9eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ window-shadows = "0.2.2"
substring = "1.4.5"
tar = "0.4.40"
archiver-rs = "0.5.1"
regex = "1.10.3"
thread_local = "1.1.8"
mio = "0.8.11"
[target.'cfg(windows)'.dependencies]
winreg = "0.52"

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use rayon::prelude::*;
mod applications;
use applications::{open_file_with, get_apps};
use substring::Substring;
use archiver_rs::{Compressed, Archive as ArchiverArchive};
use archiver_rs::Compressed;

static mut HOSTNAME: String = String::new();
static mut USERNAME: String = String::new();
Expand Down
3 changes: 1 addition & 2 deletions src-tauri/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use std::{env::current_dir, fmt::Debug, fs::{self, File}, io::{BufReader, BufWriter, Read, Write}};
use std::{fmt::Debug, fs::{self, File}, io::{BufReader, BufWriter, Read, Write}};
use chrono::prelude::*;
use color_print::cprintln;
use serde::Serialize;
use stopwatch::Stopwatch;
use tar::Entry;
use tar::Archive as TarArchive;
use tauri::Window;

Expand Down

0 comments on commit 9bcf9eb

Please sign in to comment.