Bump libloading to 0.8 (#739)
This commit is contained in:
parent
d0c5e97826
commit
d40ab4b367
|
@ -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()`
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue