2020-10-31 21:36:24 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy-ios-example"
|
|
|
|
version = "0.1.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2021-11-13 23:06:48 +00:00
|
|
|
description = "Example for building an iOS app with Bevy"
|
|
|
|
publish = false
|
|
|
|
license = "MIT OR Apache-2.0"
|
2020-10-31 21:36:24 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "bevy_ios_example"
|
|
|
|
crate-type = ["staticlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-29 23:25:22 +00:00
|
|
|
bevy = { path = "../../", features = [
|
|
|
|
"bevy_audio",
|
|
|
|
"bevy_winit",
|
2021-12-14 03:58:23 +00:00
|
|
|
"render",
|
2021-11-29 23:25:22 +00:00
|
|
|
"mp3",
|
|
|
|
"x11",
|
|
|
|
"filesystem_watcher"
|
|
|
|
], default-features = false}
|