-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
46 lines (40 loc) · 1.24 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
[package]
name = "bevy_mod_physx"
version = "0.7.0"
authors = ["Alex Kocharin <alex@kocharin.ru>"]
description = "PhysX plugin for Bevy"
documentation = "https://docs.rs/bevy_mod_physx"
homepage = "https://github.com/rlidwka/bevy_mod_physx"
repository = "https://github.com/rlidwka/bevy_mod_physx"
readme = "README.md"
keywords = ["bevy", "physx", "gamedev", "physics"]
license = "MIT"
categories = ["game-development", "simulation"]
edition = "2021"
[lib]
name = "bevy_mod_physx"
path = "src/lib.rs"
[dependencies.bevy]
version = "0.15.0"
default-features = false
features = ["bevy_asset", "bevy_render"]
[dependencies]
enumflags2 = "0.7.7"
physx = "0.19.0"
physx-sys = "0.11.5"
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies.bevy]
# cargo is expected to pick up the same version as above
version = ">= 0.0.0"
default-features = false
features = [
"bevy_core_pipeline", "bevy_gilrs", "bevy_pbr", "bevy_window", "bevy_winit", "tonemapping_luts", "x11"
]
[dev-dependencies.bevy-inspector-egui]
version = "0.28.0"
default-features = false
features = ["bevy_image", "bevy_pbr", "bevy_render", "egui_clipboard"]
[features]
default = ["debug-render"]
debug-render = ["bevy/bevy_gizmos"]
serialize = ["dep:serde", "bevy/serialize"]