forked from numas13/xash3d-maintui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 883 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 883 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
[workspace]
resolver = "2"
members = [
"xash3d-maintui",
"xash3d-ratatui",
]
exclude = [
"tools",
]
[workspace.package]
license = "LGPL-3.0-only"
authors = ["Denis Drakhnia <numas13@gmail.com>"]
edition = "2024"
rust-version = "1.86"
[workspace.dependencies]
log = "0.4"
bitflags = "2.6"
libc = "0.2"
hashbrown = "0.15"
ratatui = { version = "0.29", default-features = false, features = ["unstable-widget-ref"] }
csz = { version = "0.3.2", features = ["alloc"], git = "https://github.com/FWGS/csz" }
res = { git = "https://github.com/FWGS/xash3d-sdk.git", package = "xash3d-hl-resources" }
xash3d-shared = { git = "https://github.com/FWGS/xash3d-sdk.git" }
xash3d-ui = { git = "https://github.com/FWGS/xash3d-sdk.git", features = ["libm"] }
[profile.release]
panic = "abort"
strip = "debuginfo"
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1