Temporarily removing build.rs and the icon implementation with it

This commit is contained in:
Marta Borgia Leiva 2024-12-22 00:34:30 +01:00
parent 86956e317e
commit 6bd7d2d1db
2 changed files with 0 additions and 13 deletions

View file

@ -2,13 +2,9 @@
name = "godo-launcher"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
colog = "1.3.0"
log = "0.4.22"
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
winres = "0.1"

View file

@ -1,9 +0,0 @@
extern crate winres;
fn main() {
if cfg!(target_os = "windows") {
let mut res = winres::WindowsResource::new();
res.set_icon("app_icon.ico");
res.compile().unwrap();
}
}