bevy/crates/bevy_app/Cargo.toml

20 lines
622 B
TOML
Raw Normal View History

2020-04-05 20:19:02 -07:00
[package]
name = "bevy_app"
version = "0.1.0"
edition = "2018"
2020-08-09 17:24:27 -07:00
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"]
2020-04-05 20:19:02 -07:00
[dependencies]
# bevy
bevy_derive = { path = "../bevy_derive", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
# other
2020-07-10 16:11:25 -07:00
libloading = "0.6"
2020-05-21 17:21:33 -07:00
log = { version = "0.4", features = ["release_max_level_info"] }
serde = { version = "1.0", features = ["derive"]}