-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 801 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
[workspace]
resolver = "2"
members = [
"protocol",
"master",
"admin",
"query",
"observer",
]
default-members = ["master", "protocol"]
[workspace.package]
authors = ["Denis Drakhnia <numas13@gmail.com>"]
rust-version = "1.70"
homepage = "https://xash.su"
repository = "https://github.com/FWGS/xash3d-master"
[workspace.dependencies]
xash3d-protocol = { path = "protocol", version = "0.2.0", features = ["net"] }
xash3d-observer = { path = "observer", version = "0.1.0" }
log = "0.4"
bitflags = "2.4"
thiserror = "2"
getopts = "0.2.21"
blake2b_simd = "1.0"
fastrand = "2"
serde = { version = "1.0.188", features = ["derive"] }
crossterm = { version = "0.28", default-features = false, features = ["events", "bracketed-paste"] }
[profile.release]
codegen-units = 1
lto = true
strip = "debuginfo"