-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (47 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
55 lines (47 loc) · 1.43 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
48
49
50
51
52
53
54
55
[package]
name = "spruceos-installer"
version = "1.4.0"
edition = "2021"
description = "SpruceOS SD Card Installer"
authors = ["SpruceOS Team (https://github.com/spruceUI)", "CMTag (https://github.com/CMTag)", "NextUI Team (https://github.com/LoveRetro)", "Helaas (https://github.com/Helaas)"]
license = "CC-BY-NC-4.0"
[features]
default = []
icon = []
[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", default-features = false, features = ["png", "qoi"] }
lazy_static = "1.4"
libc = "0.2"
sha2 = "0.10"
flate2 = "1.0"
arboard = "3.4"
regex = "1"
which = "6.0"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_Registry",
"Win32_Security",
] }
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2"
[profile.release]
opt-level = "z"
lto = true
strip = "debuginfo"