mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
17 lines
No EOL
572 B
TOML
17 lines
No EOL
572 B
TOML
[package]
|
|
name = "bevy_app"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
description = "Provides core App functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
bevy_derive = { path = "../bevy_derive" }
|
|
bevy_ecs = { path = "../bevy_ecs" }
|
|
libloading = "0.6"
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
serde = { version = "1.0", features = ["derive"]} |