forked from spruceUI/spruceOS-Installer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
47 lines (41 loc) · 1.21 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
46
47
[package]
name = "nextui-installer"
version = "1.0.0"
edition = "2021"
description = "NextUI SD Card Setup"
authors = ["spruceOS Team", "NextUI Team"]
license = "GPL-3.0-or-later"
[features]
default = []
icon = ["image"]
[dependencies]
eframe = "0.33"
egui = "0.33"
egui_extras = { version = "0.33", features = ["all_loaders"] }
egui-thematic = "0.1"
tokio = { version = "1", features = ["rt-multi-thread", "fs", "process", "sync", "time", "io-util", "macros"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
sevenz-rust = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
futures-util = "0.3"
tokio-util = "0.7"
dirs = "5"
tempfile = "3"
image = { version = "0.25", optional = true, default-features = false, features = ["png"] }
lazy_static = "1.4"
libc = "0.2"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_Security",
] }
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2"
[profile.release]
opt-level = "z"
lto = true
strip = "debuginfo"