-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 879 Bytes
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 879 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
42
43
44
45
46
47
[workspace]
resolver = "2"
members = [
"utils/state",
"cs2-schema/definition",
"cs2-schema/cutl",
"cs2-schema/generated",
"cs2-schema/dumper",
"cs2-schema/provider",
"radar/client",
"radar/client-standalone",
"radar/server",
"radar/server-standalone",
"radar/shared",
"cs2",
"overlay",
"controller",
]
[workspace.package]
version = "0.5.18"
edition = "2021"
[profile.dev]
incremental = true
# build the build scripts and proc-macros in release to speedup the compilation process
[profile.dev.build-override]
opt-level = 3
codegen-units = 256
debug = false
[profile.release]
panic = "abort"
lto = true
[workspace.dependencies]
raw_struct = { version = "0.1.3" }
anyhow = "1.0.75"
log = "0.4.27"
env_logger = "0.10.0"
obfstr = "0.4.3"
nalgebra = "0.32.3"
mint = "0.5.9"