forked from cormac-obrien/richter
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
163 lines (149 loc) · 4.64 KB
/
Copy pathCargo.toml
File metadata and controls
163 lines (149 loc) · 4.64 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[package]
name = "seismon"
version = "0.2.0"
authors = ["Eira Fransham <eira.fransham@gmail.com>", "Cormac O'Brien <cormac@c-obrien.org>"]
edition = "2024"
resolver = "2"
[workspace]
members = [
"crates/seismon-utils",
"crates/lined",
"crates/bevy_mod_mdl",
"crates/bevy_mod_pakfile",
"crates/bevy_mod_assimp", "crates/bevy_mod_spr",
]
[workspace.package]
# Needs to be licensed under GPL to be compatible with Quake 1's license (since it was used
# as reference for many functions in the server).
license = "GPL-2.0"
homepage = "https://github.com/eira-fransham/seismon"
repository = "https://github.com/eira-fransham/seismon"
[workspace.dependencies]
seismon-utils = { path = "crates/seismon-utils" }
bevy_mod_mdl = { path = "crates/bevy_mod_mdl" }
bevy_mod_spr = { path = "crates/bevy_mod_spr" }
bevy_mod_assimp = { path = "crates/bevy_mod_assimp" }
bevy_mod_pakfile = { path = "crates/bevy_mod_pakfile" }
lined = { path = "crates/lined" }
bevy = { version = "0.18"}
bevy_asset = { version = "0.18" }
bevy_animation = { version = "0.18" }
bevy_app = { version = "0.18" }
bevy_camera = { version = "0.18" }
bevy_color = { version = "0.18" }
bevy_ecs = { version = "0.18" }
bevy_image = { version = "0.18" }
bevy_log = { version = "0.18" }
bevy_tasks = { version = "0.18" }
bevy_transform = { version = "0.18" }
bevy_time = { version = "0.18" }
bevy_math = { version = "0.18", features = ["serialize", "bevy_reflect"] }
bevy_mesh = { version = "0.18" }
bevy_reflect = { version = "0.18", features = ["glam"] }
bevy_render = { version = "0.18" }
bevy_pbr = { version = "0.18" }
bevy_scene = { version = "0.18" }
anyhow = "1.0"
asset-importer = { version = "0.4", features = ["build-assimp"] }
beef = "0.5"
bevy_materialize = "0.10"
bevy_mod_scripting = { version = "0.19", default-features = false }
bevy_mod_billboard = { git = "https://github.com/eira-fransham/bevy_mod_billboard.git", branch = "bevy-0.18" }
bitflags = "2.4"
byteorder = "1.3"
clap = { version = "4.5", features = ["derive", "color"] }
enumflags2 = "0.7"
futures = "0.3.31"
futures-byteorder = "1.0.1"
hashbrown = { version = "0.15", features = ["serde"] }
itertools = "0.14"
memmap2 = "0.9"
nom = "7.1"
num = "0.4"
num-derive = "0.4"
num-traits = "0.2"
serde-lexpr = { git = "https://github.com/eira-fransham/lexpr-rs.git" }
serde = { version = "1.0", features = ["derive"] }
snafu = { version = "0.8" }
strip-ansi-escapes = "0.2"
termion = "4.0"
thiserror = "1.0"
tokio = "1.49"
unicode-width = "0.2"
qbsp = { version = "0.14", features = ["bevy_reflect", "serde"] }
[dependencies]
seismon-utils.workspace = true
bevy_mod_mdl.workspace = true
bevy_mod_spr.workspace = true
bevy_mod_pakfile.workspace = true
lined.workspace = true
bevy.workspace = true
bevy_mod_billboard.workspace = true
beef.workspace = true
bitflags.workspace = true
byteorder.workspace = true
clap.workspace = true
futures.workspace = true
futures-byteorder.workspace = true
hashbrown.workspace = true
itertools.workspace = true
memmap2.workspace = true
nom.workspace = true
num.workspace = true
num-derive.workspace = true
num-traits.workspace = true
serde-lexpr.workspace = true
serde.workspace = true
snafu.workspace = true
thiserror.workspace = true
qbsp = { workspace = true, features = ["bevy_reflect", "serde"] }
arrayvec = "0.7"
bevy_seedling = { git = "https://github.com/eira-fransham/bevy_seedling.git", branch = "ignore-already-deleted-entities" }
bevy_mod_scripting.workspace = true
bevy-inspector-egui = { version = "0.36", optional = true }
bitvec = "1.0"
bumpalo = "3.4"
bytemuck = "1.14"
dashmap = "5.5"
failure = "0.1.8"
hashers = "1.0"
im = "15.1.0"
image = "0.25"
imstr = "0.2"
indexmap = "2.9"
parking_lot = "0.12"
pest = "2.8"
pest_derive = "2.8"
rand = { version = "0.9", features = ["thread_rng"] }
slab = "0.4"
smol_str = "0.2"
strum = "0.26"
strum_macros = "0.26"
uluru = "3"
uuid = "1.12"
bevy_mod_scripting_qcvm = { version = "0.3", features = ["quake1"] }
wgpu = { version = "27.0", features = ["spirv", "vulkan-portability"] }
winit = "0.29"
tracing = { version = "^0.1", optional = true }
[dependencies.bevy_trenchbroom]
git = "https://github.com/eira-fransham/bevy_trenchbroom.git"
branch = "each-model-separate-sub-asset-bevy-0.18"
default-features = false
features = ["client", "bsp"]
[features]
default = []
fast-compile = ["bevy/dynamic_linking"]
# `FullscreenMaterialPlugin` seems to cause _massive_ slowdown on macOS.
color-shift = []
dev-tools = ["dep:bevy-inspector-egui", "bevy/bevy_dev_tools"]
bin-release = ["dep:tracing", "tracing/max_level_off"]
[profile.bin-release]
inherits = "release"
strip = "symbols"
panic = "abort"
incremental = false
codegen-units = 1
[profile.dev]
opt-level = 1
[profile.dev.package.bevy]
opt-level = 3