# Objective `cargo-lipo` no more required since #3109 merged. Also remove unused `x11` feature from example.
		
			
				
	
	
		
			21 lines
		
	
	
		
			399 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			399 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",
 | 
						|
  "filesystem_watcher"
 | 
						|
], default-features = false}
 |