-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (32 loc) · 1.01 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
# Line-tables-only debug info for our own crates: keeps file/line numbers in
# backtraces and panics, but drops full DWARF (no local-variable inspection in
# a debugger). Roughly halves the size of our workspace .rlib artifacts.
[profile.dev]
debug = 1
[profile.dev.package.rapier3d]
opt-level = 3
# Strip debug info from all third-party dependencies to shrink target/.
[profile.dev.package."*"]
debug = false
[workspace]
resolver = "2"
members = [
"runtimes/*",
"engine",
"engine_ffmpeg",
"shock2vr",
"dark",
"tools/asset_probe",
"tools/dark_viewer",
"tools/dark_query",
"tools/debug_command",
"tools/hitbox_analyzer",
"tools/bench",
]
[workspace.lints.rust]
# Suppress non-local-definitions warning caused by num_derive macros (FromPrimitive/ToPrimitive)
# This is a known issue with the num_derive crate and is safe to suppress
# See: https://github.com/rust-num/num-derive/issues
non_local_definitions = "allow"
[patch.crates-io]
ffmpeg-sys-next = { path = "vendor/ffmpeg-sys-next" }