From 5e1a791f79b071c6267a11c7770721bb92288a01 Mon Sep 17 00:00:00 2001 From: BeastLe9enD Date: Sun, 26 Jun 2022 16:54:26 +0200 Subject: [PATCH 1/2] Rename macos library suffix from `dynlib` to `dylib` (#45) Rename macos library suffix from dynlib to dylib --- src/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper.rs b/src/wrapper.rs index f660ad0..94169ef 100644 --- a/src/wrapper.rs +++ b/src/wrapper.rs @@ -481,7 +481,7 @@ fn dxcompiler_lib_name() -> &'static Path { #[cfg(target_os = "macos")] fn dxcompiler_lib_name() -> &'static Path { - Path::new("./libdxcompiler.dynlib") + Path::new("./libdxcompiler.dylib") } impl Dxc { From 7d392c9ee8057c1b9b98e745ce0fa8e238d8f170 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:58:09 +0200 Subject: [PATCH 2/2] Update widestring requirement from 0.5.0 to 1.0.1 (#46) Updates the requirements on [widestring](https://github.com/starkat99/widestring-rs) to permit the latest version. - [Release notes](https://github.com/starkat99/widestring-rs/releases) - [Changelog](https://github.com/starkat99/widestring-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/starkat99/widestring-rs/compare/v0.5.0...v1.0.1) --- updated-dependencies: - dependency-name: widestring dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 594e902..d9531dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ default-target = "x86_64-pc-windows-msvc" libloading = "0.7.0" com-rs = "0.2.1" bitflags = "1.2.1" -widestring = "0.5.0" +widestring = "1.0.1" thiserror = "1.0" [target.'cfg(windows)'.dependencies]