Bump libloading to 0.8 (#739)

This commit is contained in:
David Koloski 2023-11-15 04:19:14 -05:00 committed by GitHub
parent d0c5e97826
commit d40ab4b367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Replaced `const fn name()` with associated `NAME` constants (#715)
- Generic builders now automatically set `objecttype` to `<T as Handle>::ObjectType` (#724)
- `get_calibrated_timestamps()` now returns a single value for `max_deviation` (#738)
- Bumped `libloading` from `0.7` to `0.8` (#739)
- extensions/khr: Take the remaining `p_next`-containing structs as `&mut` to allow chains (#744)
- `AccelerationStructure::get_acceleration_structure_build_sizes()`
- `ExternalMemoryFd::get_memory_fd_properties()`

View file

@ -19,7 +19,7 @@ edition = "2021"
rust-version = "1.60.0"
[dependencies]
libloading = { version = "0.7", optional = true }
libloading = { version = "0.8", optional = true }
[features]
default = ["loaded", "debug"]

View file

@ -16,7 +16,7 @@ edition = "2021"
rust-version = "1.60.0"
[dependencies]
libloading = { version = "0.7", optional = true }
libloading = { version = "0.8", optional = true }
[features]
default = ["loaded", "debug"]