mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 06:00:20 +00:00
94db0176fe
# Objective - Document that the error codes will be rendered on the bevy website (see bevyengine/bevy-website#216) - Some Cargo.toml files did not include the license or a description field ## Solution - Readme for the errors crate - Mark internal/development crates with `publish = false` - Add missing license/descriptions to some crates - [x] merge bevyengine/bevy-website#216
14 lines
416 B
TOML
14 lines
416 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_gilrs", "bevy_gltf", "bevy_wgpu", "bevy_winit", "render", "png", "hdr", "bevy_audio", "mp3"], default-features = false}
|