mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
2f4bcc5bf7
# Objective - update for Edition 2021 ## Solution - remove the `resolver = "2"` - update for https://doc.rust-lang.org/edition-guide/rust-2021/reserving-syntax.html by adding a few ` `
13 lines
410 B
TOML
13 lines
410 B
TOML
[package]
|
|
name = "bevy-ios-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "bevy_ios_example"
|
|
crate-type = ["staticlib"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bevy = { path = "../../", features = [ "bevy_gilrs", "bevy_gltf", "bevy_wgpu", "bevy_winit", "render", "png", "hdr", "bevy_audio", "mp3"], default-features = false}
|