-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1019 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "timder"
version = "0.1.0"
authors = ["Jonas Holz <[email protected]>"]
edition = "2018"
resolver = "2"
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
[[bin]]
name = "timder-desktop"
path = "gen/bin/desktop.rs"
[package.metadata.cargo-android]
app-dependencies = [
"com.google.android.material:material:1.8.0",
]
project-dependencies = [ "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21" ]
app-plugins = [ "org.jetbrains.kotlin.android" ]
app-theme-parent = "Theme.MaterialComponents.DayNight.DarkActionBar"
[dependencies]
log = "0.4.14"
chrono = "0.4"
pollster = "0.2"
egui = "0.22"
wgpu = "0.16"
winit = { version = "0.28", features = ["android-native-activity"] }
egui_demo_lib = "0.22"
egui-winit = { version = "0.22", default-features = false }
egui-wgpu = { version = "0.22", features = [ "winit" ] }
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.13.1"
[target.'cfg(not(target_os = "android"))'.dependencies]
env_logger = "0.9"