forked from Noxmore/bevy_trenchbroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (61 loc) · 1.98 KB
/
Cargo.toml
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
[workspace]
members = [
"macros",
]
[workspace.package]
version = "0.6.0"
edition = "2021"
authors = ["Noxmore"]
repository = "https://github.com/Noxmore/bevy_trenchbroom"
license = "MIT OR Apache-2.0"
[package]
name = "bevy_trenchbroom"
description = "Bevy integration with TrenchBroom"
readme = "readme.md"
categories = ["game-development"]
exclude = ["assets"]
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
[dependencies]
bevy_trenchbroom_macros = { path = "macros" }
anyhow = "1.0"
bevy = { version = "0.15", default-features = false, features = [
"bevy_asset",
"bevy_scene",
"bevy_render",
"bevy_pbr",
] }
bevy_reflect = { version = "0.15", features = ["documentation"] }
bevy_materialize = { git = "https://github.com/Noxmore/bevy_materialize.git", rev = "241342f" }
# bevy_materialize = { path = "/d/_dev/_lib/rust/bevy_materialize" } # TODO tmp
bevy_rapier3d = { version = "0.28", optional = true }
avian3d = { version = "0.2", optional = true }
default-struct-builder = "0.5.0"
float-ord = "0.3"
image = { version = "0.25", default-features = false }
indexmap = { version = "2.2", features = ["serde"] }
itertools = "0.14"
json = "0.12"
quake-util = { version = "0.3.2", features = ["std", "hashbrown"] }
serde = { version = "1.0", features = ["derive"] } # serde isn't optional because MaterialProperties requires to be deserialized
thiserror = "2.0"
toml = "0.8"
disjoint-sets = "0.4.2"
q1bsp = { git = "https://github.com/Noxmore/q1bsp.git", rev = "df60a98" }
# q1bsp = { path = "/d/_dev/_lib/rust/q1bsp" } # TODO tmp
nil = "0.14"
ndshape = "0.3.0"
inventory = { version = "0.3", optional = true }
smol = "2"
[dev-dependencies]
bevy = { version = "0.15", default-features = true }
bevy_flycam = "0.15"
bevy-inspector-egui = "0.28" # TODO TMP
[features]
default = ["auto_register"]
rapier = ["dep:bevy_rapier3d"]
avian = ["dep:avian3d"]
auto_register = ["dep:inventory", "bevy_trenchbroom_macros/auto_register"]