mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
15 lines
284 B
TOML
15 lines
284 B
TOML
|
[package]
|
||
|
name = "example_plugin"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
bevy = { path = "../../../../bevy" }
|
||
|
bevy_derive = { path = "../../../bevy_derive" }
|
||
|
|
||
|
[profile.release]
|
||
|
debug = true
|