-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 791 Bytes
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
[package]
name = "tpl-dioxus"
version = "0.1.0"
authors = ["shiki <0110shiki@gmail.com>"]
edition = "2021"
license = "MIT"
build = "build.rs"
[dependencies]
dioxus = { version = "0.6.3", features = ["desktop"] }
dioxus-desktop = { version = "0.6.2", features = ["tokio_runtime"] }
image = "0.24.7"
uuid = { version = "1.17.0", features = ["v4"] }
gloo-timers = { version = "0.3", features = ["futures"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[build-dependencies]
dioxus-cli = { version = "0.6.0" }
winres = "0.1"
[features]
default = ["desktop"]
desktop = ["dioxus/desktop"]
[profile.release]
opt-level = "z"
lto = true
strip = true
codegen-units = 1
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"