-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (38 loc) · 1.08 KB
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
43
44
45
[package]
name = "wheregmis"
version = "0.1.0"
edition = "2021"
[dependencies]
dioxus = { version = "0.6.1", features = ["router"] }
dioxus-logger = { version = "0.6.1" }
pulldown-cmark = "0.12.2"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.19"
include_dir = "0.7.3"
dioxus-motion = { version = "0.2.2", default-features = false, optional = true }
easer = { version = "0.3.0", default-features = false }
[features]
default = ["web"]
web = ["dioxus/web", "dioxus-motion/web"]
desktop = ["dioxus/desktop", "dioxus-motion/desktop"]
mobile = ["dioxus/mobile", "dioxus-motion/desktop"]
[profile.rapid]
inherits = "dev"
opt-level = 1
incremental = true
overflow-checks = false
lto = "thin"
panic = "unwind"
codegen-units = 32
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable link-time optimization.
codegen-units = 32 #Parallelize codegen across 1 cores
strip = true # Automatically strip symbols from the binary.
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"