-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (38 loc) · 1.09 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
37
38
39
40
41
42
[package]
name = "Roblox-assets-extractor"
version = "0.1.4"
edition = "2021"
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
eframe = { features = ["glow"], default-features = false, version = "0.29" }
egui = "0.29"
egui_commonmark = "0.18.0"
egui_dock = "0.14.0"
fluent-bundle = { version = "0.15.3", default-features = false }
lazy_static = "1.5.0"
native-dialog = "0.7.0"
open = "5.3.1"
reqwest = { version = "0.12.9", features = ["blocking"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = { version = "1.0.133", features=["std"], default-features = false }
sys-locale = "0.3.2"
tempfile = "3"
unic-langid = "0.9.5"
whoami = { version = "1.5.2", default-features = false }
[build-dependencies]
winresource = "0.1.19"
# Minimize executable size (Target size < 10MB)
[profile.release.package."*"]
opt-level = 3
codegen-units = 1
debug = false
overflow-checks = false
strip = true
[profile.release]
opt-level = 3 # Main search logic in this project, opt-level 3 for speed
codegen-units = 1
lto = "fat"
debug = false
panic = "abort"
overflow-checks = false
strip = true