-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
55 lines (44 loc) · 1.2 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
[package]
name = "specs-physics"
version = "0.3.0"
authors = ["Benjamin Amling <benjamin@amling.net>", "Kel <x@unclear.info>", "jojolepro <jojolepromain@gmail.com>"]
repository = "https://github.com/amethyst/specs-physics.git"
homepage = "https://github.com/amethyst/specs-physics.git"
edition = "2018"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/specs-physics"
description = "nphysics integration for the Specs entity component system"
keywords = ["specs", "nphysics", "nphysics3d"]
[features]
default = []
amethyst = ["amethyst_core", "amethyst_error"]
[dependencies]
log = "0.4.6"
specs = "0.16.0"
specs-hierarchy = "0.6.0"
shrev = "1.1.1"
nalgebra = "0.19.0"
ncollide3d = "0.21.0"
nphysics3d = "0.13.1"
amethyst_core = { version = "0.10", optional = true }
amethyst_error = { version = "0.5", optional = true }
objekt = "0.1.2"
[dev-dependencies]
simple_logger = "1.2.0"
approx = "0.3.2"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "hierarchy"
path = "examples/hierarchy.rs"
[[example]]
name = "positions"
path = "examples/positions.rs"
[[example]]
name = "collision"
path = "examples/collision.rs"
[[example]]
name = "events"
path = "examples/events.rs"