fix(authenticator): Lock winapi-util to 0.1.6

0.1.7 upgraded to windows-sys which breaks the authenticator crate.
pull/1331/head
FabianLars 1 year ago
parent 806404e96e
commit b25ce0d81b
No known key found for this signature in database

16
Cargo.lock generated

@ -357,12 +357,11 @@ dependencies = [
[[package]] [[package]]
name = "async-channel" name = "async-channel"
version = "2.3.0" version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f2776ead772134d55b62dd45e59a79e21612d85d0af729b8b7d3967d601a62a" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
dependencies = [ dependencies = [
"concurrent-queue", "concurrent-queue",
"event-listener 5.3.0",
"event-listener-strategy 0.5.2", "event-listener-strategy 0.5.2",
"futures-core", "futures-core",
"pin-project-lite", "pin-project-lite",
@ -3510,9 +3509,9 @@ dependencies = [
[[package]] [[package]]
name = "muda" name = "muda"
version = "0.13.3" version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80540ed8e87ad7c2a4890cde4ba1232d8d775394853f02e84ed18603a94a0a00" checksum = "1717c136c99673f55640c14125a0349a5cd7fee6efcfb0adbfe4c289e3b3f7f2"
dependencies = [ dependencies = [
"cocoa", "cocoa",
"crossbeam-channel", "crossbeam-channel",
@ -6160,6 +6159,7 @@ dependencies = [
"tauri", "tauri",
"tauri-plugin", "tauri-plugin",
"thiserror", "thiserror",
"winapi-util",
] ]
[[package]] [[package]]
@ -7673,11 +7673,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]] [[package]]
name = "winapi-util" name = "winapi-util"
version = "0.1.8" version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
dependencies = [ dependencies = [
"windows-sys 0.52.0", "winapi",
] ]
[[package]] [[package]]

@ -33,6 +33,9 @@ bytes = "1"
byteorder = "1" byteorder = "1"
openssl = "0.10" openssl = "0.10"
[target."cfg(target_os = \"windows\")".dependencies]
winapi-util = "=0.1.6"
[dev-dependencies] [dev-dependencies]
rand = "0.8" rand = "0.8"
rusty-fork = "0.3" rusty-fork = "0.3"

Loading…
Cancel
Save