Skip to content

Commit c887adf

Browse files
dependabot[bot]torokati44
authored andcommitted
build(deps): bump libloading from 0.8.9 to 0.9.0
Bumps [libloading](https://github.com/nagisa/rust_libloading) from 0.8.9 to 0.9.0. - [Commits](nagisa/rust_libloading@0.8.9...0.9.0) --- updated-dependencies: - dependency-name: libloading dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2f56420 commit c887adf

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

Cargo.lock

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

video/external/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ruffle_video_software = { path = "../software" }
1717
thiserror = { workspace = true }
1818

1919
# Needed for OpenH264:
20-
libloading = { version = "0.8.9", optional = true }
20+
libloading = { version = "0.9.0", optional = true }
2121
reqwest = { version = "0.12.24", default-features = false, features = ["blocking"], optional = true }
2222
hex = { version = "0.4.3", optional = true }
2323
bzip2 = { version = "0.6.1", features = ["static"], optional = true }

video/external/src/decoder/openh264_sys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ impl OpenH264 {
13651365
where
13661366
P: AsRef<::std::ffi::OsStr>,
13671367
{
1368-
let library = ::libloading::Library::new(filename)?;
1368+
let library = ::libloading::Library::new(filename.as_ref())?;
13691369
Self::from_library(library)
13701370
}
13711371
pub unsafe fn from_library<L>(library: L) -> Result<Self, ::libloading::Error>

0 commit comments

Comments
 (0)