Skip to content

Commit 9a77bf9

Browse files
steinbroEh2406
authored andcommitted
Replace winres with winresource
Fixes #17
1 parent a7bcb83 commit 9a77bf9

File tree

3 files changed

+86
-83
lines changed

3 files changed

+86
-83
lines changed

Cargo.lock

Lines changed: 83 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ chrono = { version = "0.4", features = ["serde"] }
3232
error-code = "2.3.1"
3333

3434
[target.'cfg(windows)'.build-dependencies]
35-
winres = "0.1.12"
35+
winresource = "0.1.17"
3636

3737
[dev-dependencies]
3838
quickcheck = "1.0.3"

build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#[cfg(windows)]
2-
extern crate winres;
2+
extern crate winresource;
33

44
#[cfg(windows)]
55
fn main() {
6-
let mut res = winres::WindowsResource::new();
6+
let mut res = winresource::WindowsResource::new();
77
res.set_manifest_file("rust_reader.manifest");
88
res.set_icon("Reader2.ico");
99
res.compile().unwrap();

0 commit comments

Comments
 (0)