Skip to content

Commit bab9790

Browse files
committed
Upgrade to windows-bindgen 0.62
1 parent 1762c71 commit bab9790

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ js-sys = { version = "0.3", optional = true } # contains FFI bindings for
5252
windows-link = { version = "0.1", optional = true }
5353

5454
[target.'cfg(windows)'.dev-dependencies]
55-
windows-bindgen = { version = "0.61" } # MSRV is 1.74
55+
windows-bindgen = { version = "0.62" } # MSRV is 1.74
5656

5757
[target.'cfg(unix)'.dependencies]
5858
iana-time-zone = { version = "0.1.45", optional = true, features = ["fallback"] }

tests/win_bindings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn gen_bindings() {
99
let output = "src/offset/local/win_bindings.rs";
1010
let existing = fs::read_to_string(output).unwrap();
1111

12-
bindgen(["--no-deps", "--etc", input]);
12+
bindgen(["--no-deps", "--etc", input]).unwrap();
1313

1414
// Check the output is the same as before.
1515
// Depending on the git configuration the file may have been checked out with `\r\n` newlines or

0 commit comments

Comments
 (0)