Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/examples/mobile/Cargo.toml
6592 views
1
[package]
2
name = "bevy_mobile_example"
3
# Version is required by `cargo-apk`, though this value will never change.
4
version = "0.0.0"
5
edition = "2024"
6
description = "Example for building an iOS or Android app with Bevy"
7
publish = false
8
license = "MIT OR Apache-2.0"
9
10
[lib]
11
name = "bevy_mobile_example"
12
crate-type = ["lib", "cdylib"]
13
14
[dependencies]
15
bevy = { path = "../../" }
16
17
[lints]
18
workspace = true
19
20