mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
9ee02e87d3
# Objective - The [`version`] field in `Cargo.toml` is optional for crates not published on <https://crates.io>. - We have several `publish = false` tools in this repository that still have a version field, even when it's not useful. [`version`]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-version-field ## Solution - Remove the [`version`] field for all crates where `publish = false`. - Update the description on a few crates and remove extra newlines as well.
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "bevy_mobile_example"
|
|
# Version is required by `cargo-apk`, though this value will never change.
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
description = "Example for building an iOS or Android app with Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "bevy_mobile_example"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
bevy = { path = "../../" }
|
|
|
|
[target.aarch64-apple-ios-sim.dependencies]
|
|
bevy = { path = "../../", features = ["ios_simulator"] }
|
|
|
|
[package.metadata.android]
|
|
package = "org.bevyengine.example"
|
|
apk_name = "bevyexample"
|
|
assets = "../../assets"
|
|
resources = "../../assets/android-res"
|
|
# This strips debug symbols from the shared libraries, drastically reducing APK size. If you need them, remove the option.
|
|
strip = "strip"
|
|
build_targets = ["aarch64-linux-android", "armv7-linux-androideabi"]
|
|
|
|
[package.metadata.android.sdk]
|
|
target_sdk_version = 31
|
|
|
|
[package.metadata.android.application]
|
|
icon = "@mipmap/ic_launcher"
|
|
label = "Bevy Example"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
|
|
all-features = true
|