2020-10-01 20:04:06 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_dynamic_plugin"
|
2023-11-04 17:24:23 +00:00
|
|
|
version = "0.12.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-10-01 20:04:06 +00:00
|
|
|
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-10-01 20:04:06 +00:00
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
2023-11-04 17:24:23 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.12.0" }
|
2020-10-01 20:04:06 +00:00
|
|
|
|
|
|
|
# other
|
2023-05-22 20:04:15 +00:00
|
|
|
libloading = { version = "0.8" }
|
2022-11-01 11:35:44 +00:00
|
|
|
thiserror = "1.0"
|
2023-11-18 20:58:48 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|