mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 22:50:19 +00:00
f0b1e1d32b
Updates the requirements on [libloading](https://github.com/nagisa/rust_libloading) to permit the latest version. <details> <summary>Commits</summary> <ul> <li><a href="83b1037f21
"><code>83b1037</code></a> Release 0.8.0</li> <li><a href="a6a394a7ef
"><code>a6a394a</code></a> bump MSRV to 1.48</li> <li><a href="c7955a761e
"><code>c7955a7</code></a> Replace winapi with windows-sys</li> <li><a href="95d03a1ddf
"><code>95d03a1</code></a> Add support for QNX Neutrino</li> <li><a href="6e284984ae
"><code>6e28498</code></a> Fix CI</li> <li><a href="95a0f62e8f
"><code>95a0f62</code></a> Placate clippy</li> <li><a href="224a3def35
"><code>224a3de</code></a> Release 0.7.4</li> <li><a href="bd17713dcc
"><code>bd17713</code></a> Support AIX dyld constants</li> <li><a href="6e07929736
"><code>6e07929</code></a> fix typo</li> <li><a href="6b33651a90
"><code>6b33651</code></a> Construct a PathBuf</li> <li>Additional commits viewable in <a href="https://github.com/nagisa/rust_libloading/compare/0.7.0...0.8.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
540 B
TOML
19 lines
540 B
TOML
[package]
|
|
name = "bevy_dynamic_plugin"
|
|
version = "0.11.0-dev"
|
|
edition = "2021"
|
|
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.11.0-dev" }
|
|
|
|
# other
|
|
libloading = { version = "0.8" }
|
|
thiserror = "1.0"
|