mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-13 01:58:54 +00:00
e8ae198653
The winit based examples no longer have an explicit dependency on android-activity and they instead consume the `android-activity` API via the Winit crate so there's no need to keep the versions synchronized.
64 lines
2.0 KiB
TOML
64 lines
2.0 KiB
TOML
[package]
|
|
name = "agdk-egui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
winit = { version = "0.27", features = [ "android-game-activity" ] }
|
|
wgpu = "0.13.0"
|
|
pollster = "0.2"
|
|
egui = "0.19"
|
|
egui-wgpu = { version = "0.19", features = [ "winit" ] }
|
|
egui-winit = { version = "0.19", default-features = false }
|
|
egui_demo_lib = "0.19"
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
env_logger = "0.9"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_logger = "0.11.0"
|
|
|
|
[patch.crates-io]
|
|
|
|
# This branch of Winit has an updated Android backend based on android-activity
|
|
# Note: The winit branches are current misnamed:
|
|
# - "android-activity" is based on Winit 0.27 (required for Egui compatibility)
|
|
# - "android-activity-0.27" is based on Winit master
|
|
# The -0.27 branch is currently associated with a pull request so we'll just
|
|
# stick with these names for now
|
|
winit = { git = "https://github.com/rib/winit", branch = "android-activity" }
|
|
#winit = { path = "../../../winit" }
|
|
|
|
# Note:
|
|
# Since android-activity is responsible for invoking the `android_main`
|
|
# entrypoint for a native Rust application there can only be a single
|
|
# implementation of the crate linked with the application.
|
|
#
|
|
# By default the Winit-based examples use released versions of android-activity
|
|
# to help keep the version in sync with the Winit backend.
|
|
#
|
|
# If you'd like to build this example against the local checkout of
|
|
# android-activity you should specify a patch here to make sure you also affect
|
|
# the version that Winit uses.
|
|
#
|
|
# Note: also check that the local android-activity/Cargo.toml version matches
|
|
# the android-activity version that Winit depends on (in case you need to check
|
|
# out a release branch locally to be compatible)
|
|
#android-activity = { path = "../../android-activity" }
|
|
|
|
[features]
|
|
default = []
|
|
desktop = []
|
|
|
|
[lib]
|
|
name="main"
|
|
crate_type=["cdylib"]
|
|
|
|
[[bin]]
|
|
path="src/lib.rs"
|
|
name="egui-test"
|
|
required-features = [ "desktop" ] |