mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 14:40:19 +00:00
544776831d
# Objective The feature doesn't have any use case in libraries or applications and many users use this feature incorrectly. See the issue for details. Closes #5753. ## Solution Remove it. --- ## Changelog ### Removed - `render` feature group. ## Migration Guide Instead of using `render` feature group use dependencies directly. This group consisted of `bevy_core_pipeline`, `bevy_pbr`, `bevy_gltf`, `bevy_render`, `bevy_sprite`, `bevy_text` and `bevy_ui`. You probably want to check if you need all of them.
24 lines
470 B
TOML
24 lines
470 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",
|
|
"bevy_core_pipeline",
|
|
"bevy_pbr",
|
|
"bevy_render",
|
|
"bevy_text",
|
|
"bevy_ui",
|
|
"vorbis",
|
|
"filesystem_watcher"
|
|
], default-features = false}
|