bevy/crates/bevy_dynamic_plugin/Cargo.toml

25 lines
573 B
TOML
Raw Normal View History

[package]
name = "bevy_dynamic_plugin"
version = "0.14.0-dev"
edition = "2021"
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) This relicenses Bevy under the dual MIT or Apache-2.0 license. For rationale, see #2373. * Changes the LICENSE file to describe the dual license. Moved the MIT license to docs/LICENSE-MIT. Added the Apache-2.0 license to docs/LICENSE-APACHE. I opted for this approach over dumping both license files at the root (the more common approach) for a number of reasons: * Github links to the "first" license file (LICENSE-APACHE) in its license links (you can see this in the wgpu and rust-analyzer repos). People clicking these links might erroneously think that the apache license is the only option. Rust and Amethyst both use COPYRIGHT or COPYING files to solve this problem, but this creates more file noise (if you do everything at the root) and the naming feels way less intuitive. * People have a reflex to look for a LICENSE file. By providing a single license file at the root, we make it easy for them to understand our licensing approach. * I like keeping the root clean and noise free * There is precedent for putting the apache and mit license text in sub folders (amethyst) * Removed the `Copyright (c) 2020 Carter Anderson` copyright notice from the MIT license. I don't care about this attribution, it might make license compliance more difficult in some cases, and it didn't properly attribute other contributors. We shoudn't replace it with something like "Copyright (c) 2021 Bevy Contributors" because "Bevy Contributors" is not a legal entity. Instead, we just won't include the copyright line (which has precedent ... Rust also uses this approach). * Updates crates to use the new "MIT OR Apache-2.0" license value * Removes the old legion-transform license file from bevy_transform. bevy_transform has been its own, fully custom implementation for a long time and that license no longer applies. * Added a License section to the main readme * Updated our Bevy Plugin licensing guidelines. As a follow-up we should update the website to properly describe the new license. Closes #2373
2021-07-23 21:11:51 +00:00
license = "MIT OR Apache-2.0"
keywords = ["bevy"]
[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.14.0-dev" }
# other
Update libloading requirement from 0.7 to 0.8 (#8649) Updates the requirements on [libloading](https://github.com/nagisa/rust_libloading) to permit the latest version. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nagisa/rust_libloading/commit/83b1037f21850e7da0cb9c4be17ed05da63894b2"><code>83b1037</code></a> Release 0.8.0</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/a6a394a7efd583a68b61511cf36822268a84acc6"><code>a6a394a</code></a> bump MSRV to 1.48</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/c7955a761e0ca64178b50dfa22be0177b238caf4"><code>c7955a7</code></a> Replace winapi with windows-sys</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/95d03a1ddfbb9909555ed0b701f1018ffbcccebc"><code>95d03a1</code></a> Add support for QNX Neutrino</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/6e284984aee68cc2d1b7e7d5e7b5a2a2279cf8e3"><code>6e28498</code></a> Fix CI</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/95a0f62e8f52dc4f85921132588bfba7be18caf2"><code>95a0f62</code></a> Placate clippy</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/224a3def35b7aa68996768b58d0a0ebabb9f0533"><code>224a3de</code></a> Release 0.7.4</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/bd17713dcce4825b4969ef79b8b643eaee59a29f"><code>bd17713</code></a> Support AIX dyld constants</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/6e0792973615751136453e446b03444dc80f4e0b"><code>6e07929</code></a> fix typo</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/6b33651a90a88b22b8575bf9801cf77ab1ef4318"><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>
2023-05-22 20:04:15 +00:00
libloading = { version = "0.8" }
thiserror = "1.0"
[lints]
workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
all-features = true