mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 13:13:49 +00:00
aeba9faf04
# Objective - mp3 feature of rodio has dependencies that are not maintained with security issues - mp3 feature of rodio doesn't build in wasm - mp3 feature of rodio uses internal memory allocation that cause rejection from Apple appstore ## Solution - Use vorbis instead of mp3 by default Co-authored-by: François <8672791+mockersf@users.noreply.github.com>
21 lines
408 B
TOML
21 lines
408 B
TOML
[package]
|
|
name = "bevy-ios-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Example for building an iOS app with Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "bevy_ios_example"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
bevy = { path = "../../", features = [
|
|
"bevy_audio",
|
|
"bevy_winit",
|
|
"render",
|
|
"vorbis",
|
|
"x11",
|
|
"filesystem_watcher"
|
|
], default-features = false}
|