-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.07 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
[package]
name = "hecs_rapier"
version = "0.11.0"
authors = [
"Tomasz Sterna <[email protected]>",
"Sébastien Crozet <[email protected]>"
]
description = "Rapier2d integration for hecs ECS"
repository = "https://github.com/smokku/hecs_rapier"
readme = "README.md"
keywords = ["physics", "dynamics", "rigid", "real-time"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
hecs = { version = "0.6", default-features = false, features = ["macros"] }
# Don't enable the default features because we don't need the ColliderSet/RigidBodySet
rapier2d = { version = "0.11", default-features = false, features = ["dim2", "f32"] }
[profile.release]
codegen-units = 1
[patch.crates-io]
hecs = { git = "https://github.com/smokku/hecs.git" }
#nalgebra = { path = "../nalgebra" }
#parry2d = { path = "../parry/build/parry2d" }
#parry3d = { path = "../parry/build/parry3d" }
#rapier2d = { path = "../rapier/build/rapier2d" }
#rapier3d = { path = "../rapier/build/rapier3d" }
#rapier2d = { git = "https://github.com/dimforge/rapier" }
#rapier3d = { git = "https://github.com/dimforge/rapier" }