-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (28 loc) · 915 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
42
[package]
name = "Rust-Calculator"
version = "9.0.0"
edition = "2021"
build = "build.rs"
description = "A simple calculator I made in rust."
[build-dependencies]
slint-build = "1.7.1"
[lib]
crate-type = ["cdylib"]
[dependencies]
slint = { version = "1.7.1", features = ["backend-android-activity-06"] }
[package.metadata.bundle]
name = "Rust Calculator"
identifier = "io.github.ExoticDG.Rust-Calculator"
icon = ["./icon.png", "./[email protected]"]
[package.metadata.android]
# Name for final APK file.
# Defaults to package name.
apk_name = "Rust Calculator"
[package.metadata.android.application]
# Virtual path your application's icon for any mipmap level.
# If not specified, an icon will not be included in the APK.
# icon = "@mipmap/ic_launcher"
# See https://developer.android.com/guide/topics/manifest/application-element#label
#
# Defaults to the compiled artifact's name.
label = "Rust Calculator"