From b4fc14a6491aeb8aa91c5d98ccdf8466bee29c4d Mon Sep 17 00:00:00 2001 From: dAxpeDDa Date: Thu, 8 Jun 2023 01:49:41 +0200 Subject: [PATCH] Allow `libloading` v0.7 and v0.8 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ff9b634..27d181a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,8 @@ documentation = "https://docs.rs/hassle-rs" [dependencies] bitflags = "2" com = { version = "0.6", features = ["production"] } -libloading = "0.8" +# libloading 0.8 switches from `winapi` to `windows-sys`; permit either +libloading = ">=0.7,<0.9" thiserror = "1.0.2" widestring = "1"