37 lines
806 B
TOML
37 lines
806 B
TOML
[package]
|
|
name = "egui_android_template"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
egui = { version = "0.33.2", default-features = false, features = [
|
|
"default_fonts",
|
|
"rayon",
|
|
] }
|
|
|
|
log = "0.4"
|
|
|
|
[target.'cfg(not(target_os="android"))'.dependencies]
|
|
eframe = { version = "0.33.2", default-features = false, features = [
|
|
"default_fonts",
|
|
"glow",
|
|
"wayland",
|
|
"x11",
|
|
"accesskit",
|
|
] }
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
winit = { version = "0.30.12", features = ["android-native-activity"] }
|
|
eframe = { version = "0.33.2", default-features = false, features = [
|
|
"default_fonts",
|
|
"glow",
|
|
"android-native-activity",
|
|
] }
|
|
|
|
android_logger = "0.13"
|
|
android-activity = { version = "0.6.0", features = ["native-activity"] }
|
|
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|