-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (55 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
67 lines (55 loc) · 1.37 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
56
57
58
59
60
61
62
63
64
65
66
67
[package]
authors = ["Gabriel"]
license = "MIT"
name = "steam"
version = "0.6.3"
edition = "2024"
[lib]
name = "steamtools"
[[bin]]
name = "stcli"
path = "gui/main.rs"
[profile.dev]
opt-level = 0
debug = "full"
incremental = true
[profile.dev.package."*"]
opt-level = 0
[profile.release]
opt-level = 3
incremental = true
codegen-units = 16
lto = "fat"
[profile.release.package."*"]
opt-level = 3
[profile.profiling]
inherits = "release"
debug = true
opt-level = 3
[dependencies]
# egui
eframe = { version = "0.34.1", features = ["wgpu", "persistence"] }
egui_code_editor = "0.2.21"
egui_extras = { version = "0.33.3", features = ["all_loaders"] }
# egui extra modules, tree sitter for code editor & image support
image = { version = "0.25.9", features = ["jpeg"] }
tree-sitter = "0.26.8"
tree-sitter-lua = "0.5.0"
# json request handling
reqwest = { version = "0.13.2", features = ["json","blocking"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
# message box, file dialog
rfd = "0.17.0"
# logging
log = "0.4.29"
env_logger = "0.11.10"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = ["Win32_Foundation", "Win32_System_Console", "Win32_UI_WindowsAndMessaging"] }
windows-registry = "0.6.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[build-dependencies]
cc = "1.2.60"
[dev-dependencies]
criterion = "0.8.2"