Suppression du code non utilisé

This commit is contained in:
Tipragot 2023-11-18 23:47:59 +01:00
parent 67ae6a4e9c
commit 4d8883218c
2 changed files with 2 additions and 4 deletions

View file

@ -6,7 +6,7 @@ build = "build.rs"
[dependencies]
reqwest = { version = "0.11.22", features = ["blocking"] }
winapi = { version = "0.3", features = ["wincon", "winuser"] }
winapi = { version = "0.3", features = ["wincon"] }
anyhow = "1.0.75"
glob = "0.3.1"
zip = "0.6.6"

View file

@ -1,12 +1,10 @@
use anyhow::Context;
use launcher::{apply_zip, download};
use std::env;
use std::io::{BufRead, BufReader, Read, Write};
use std::io::{BufRead, BufReader, Write};
use std::os::windows::process::CommandExt;
use std::path::Path;
use std::process::Stdio;
use std::thread;
use std::time::Duration;
use std::{env::set_current_dir, fs, io, process::Command};
use winapi::um::winbase::DETACHED_PROCESS;