-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (62 loc) · 1.98 KB
/
Copy pathCargo.toml
File metadata and controls
77 lines (62 loc) · 1.98 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
68
69
70
71
72
73
74
75
76
77
[workspace]
members = ["crates/*"]
package.edition = "2024"
resolver = "3"
[workspace.lints.clippy]
type-complexity = "allow"
[workspace.dependencies]
bevy_vpk = { path = "crates/bevy_vpk" }
bevy = "0.18"
avian3d = "0.6.0"
bevy_ahoy = { git = "https://github.com/janhohenheim/bevy_ahoy.git" }
bevy_enhanced_input = "0.24"
bevy_n2m = { git = "https://codeberg.org/voidentente/bevy_n2m.git" }
glam = "0.30"
# NOTE: Using fork that removes unnecessary noisy log lines
qbsp = { git = "https://github.com/eira-fransham/qbsp.git" }
vbsp = { git = "https://github.com/eira-fransham/vbsp.git" }
vdf-reader = { git = "https://codeberg.org/icewind/vdf-reader.git" }
vmdl = { git = "https://github.com/eira-fransham/vmdl.git" }
vmt-parser = { git = "https://codeberg.org/icewind/vmt-parser.git" }
vpk = { git = "https://github.com/eira-fransham/vpk-rs.git" }
vtf = { git = "https://github.com/eira-fransham/vtf-rs.git" }
anyhow = "1.0"
astcenc-rs = "0.2"
arrayvec = "0.7"
async-fs = "2.0"
cfg-if = "1.0"
clap = "4.5"
futures-io = "0.3"
image = "0.25"
itertools = "0.14"
pin-project = "1.0"
rand = "0.10"
rayon = "1.11"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
# [patch."https://github.com/eira-fransham/qbsp.git"]
# qbsp = { path = "../qbsp" }
# [patch."https://github.com/eira-fransham/vpk-rs.git"]
# vpk = { path = "../vpk-rs" }
# [patch."https://github.com/eira-fransham/vmdl.git"]
# vmdl = { path = "../vmdl" }
# [patch."https://github.com/eira-fransham/vbsp.git"]
# vbsp = { path = "../vbsp" }
# [patch.crates-io]
# vtf = { path = "../vtf-rs" }
# TODO: Some internals need to be exposed, so we have a vendored fork
[patch."https://codeberg.org/icewind/vmt-parser.git"]
vmt-parser = { path = "crates/vmt-parser" }
# Remove spurious validation errors
[profile.dev.package.wgpu-types]
debug-assertions = false
[profile.bin-release]
inherits = "release"
strip = "symbols"
panic = "abort"
incremental = false
codegen-units = 1
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3