-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 1022 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
41
[package]
name = "elden_mod_loader_gui"
version = "0.9.7"
authors = ["WardLordRuby"]
edition = "2024"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.winresource]
ProductName = "Elden Mod Loader GUI"
FileDescription = "Elden Ring mod manager by: WardLordRuby"
ProductVersion = "0.9.7-beta"
[profile.release]
opt-level = "s" # Optimize for size.
lto = true
strip = true
[dependencies]
tokio = { version = "1.41.0", features = ["sync"] }
slint = { version = "1.9.1", features = ["raw-window-handle-06"] }
i-slint-backend-winit = "1.9.1"
winit = "0.30.8"
rfd = "0.15.0"
tracing = { version = "0.1.41", features = ["release_max_level_info"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-appender = "0.2.3"
rust-ini = "0.21.1"
[build-dependencies]
slint-build = "1.9.1"
winresource = "0.1.19"
[dev-dependencies]
criterion = "0.7.0"
rand = "0.9.2"
[[bench]]
name = "data_collection"
harness = false