-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
42 lines (37 loc) · 1.49 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
[package]
name = "amethyst-rhusics"
version = "0.5.1"
authors = [
"Simon Rönnberg <[email protected]>",
"Thomas O'Dell <[email protected]>"
]
edition = "2018"
repository = "https://github.com/amethyst/amethyst-rhusics.git"
homepage = "https://github.com/amethyst/amethyst-rhusics.git"
license = "MIT/Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/amethyst-rhusics"
description = "Integration of `amethyst` and `rhusics`"
keywords = ["gamedev", "amethyst", "physics"]
[dependencies]
amethyst_error = "0.15.3"
amethyst_core = "0.15.3"
rhusics-ecs = { version = "0.9", git = "https://github.com/rustgd/rhusics", features = ["serializable"] }
rhusics-core = { version = "0.9", git = "https://github.com/rustgd/rhusics", features = ["specs", "serializable"] }
shrev = "1.1"
collision = { version = "0.20", features = ["serde"] }
nalgebra = "0.21"
cgmath = "0.17"
[dev-dependencies]
# Note: cargo currently does not allow you to set features that affect dev dependencies
# if you do you get an error:
# the package <your package> depends on `amethyst-rhusics`, with features: `amethyst`
# but `amethyst-rhusics` does not have these features.
# (Bug #6915)
# You'll have to hand-modify this configuration file for your own environment.
amethyst = { version = "0.15", features = ["metal"] }
log = { version = "0.4.8", features = ["serde"] }
genmesh = "0.6"
rand = "0.6.5" # same version of rand used by cgmath
shred = { version = "0.10", features = ["shred-derive"] }
shred-derive = "0.6"