-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (31 loc) · 869 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
39
40
41
[package]
name = "shura_template"
version = "0.4.0"
edition = "2021"
# Android
# Important: key.keystore is only for demo. Replace key.keystore for your own private key when deploying
# [lib]
# crate_type=["cdylib"]
# Desktop (Windows, Linux, MacOS, WASM)
[[bin]]
path="src/lib.rs"
name="desktop"
[dependencies]
shura = "0.5"
[workspace]
members = ["run-wasm"]
[package.metadata.android]
package = "com.shura.template"
apk_name = "Shura Template"
[package.metadata.android.application]
label = "Shura Template"
theme = "@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"
[package.metadata.android.application.activity]
orientation = "landscape"
[package.metadata.android.signing.release]
path = "./key.keystore"
keystore_password = "android"
[[package.metadata.android.uses_feature]]
name = "android.hardware.vulkan.level"
required = true
version = 1