-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (30 loc) · 1.03 KB
/
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
[package]
name = "makepad_wonderous"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# makepad-widgets = { path = "../makepad/widgets", version = "0.6.0" }
makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "rik" }
[package.metadata]
osiris.application.id = "Wonderous"
[[package.metadata.osiris.platforms]]
id = "macos"
macos.abis = ["native"]
#macos.bundle-id = "rs.robius.wonderous"
#macos.version-code = 1
#macos.version-name = "0.1.0"
[[package.metadata.osiris.archives]]
id = "macos-pkg"
macos-pkg.app-id = "TBD.rs.robius.wonderous"
#macos-pkg.codesign-identity = "./TBD"
#macos-pkg.pkgsign-identity = "./TBD"
#macos-pkg.provision-file = "./TBD"
[profile.small]
inherits = "release"
#debug = true
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true