-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (33 loc) · 1.05 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
[package]
name = "gtfo-log-tracker"
version = "0.1.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
[dependencies]
anyhow = "1.0.76"
dirs = "5.0.1"
futures = "0.3.29"
iced = { version = "0.10.0", features = ["lazy", "tokio", "image"] }
iced_aw = { version = "0.7.0", default-features = false, features = ["spinner"] }
iced_table = "0.1.0"
image = {version = "0.24.7", default-features = false, features = ["ico"] }
log = "0.4.20"
notify = "6.1.1"
once_cell = "1.19.0"
regex = "1.10.2"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
simplelog = "0.12.1"
steamworks = "0.10.0"
time = { version = "0.3.31", features = ["macros"] }
tokio = { version = "1", features = ["full"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.52.0", features = ["Win32_UI_Shell", "Win32_Foundation"] }
[build-dependencies]
winresource = "0.1.17"