-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.14.1 (staging): Upgraded to Amethyst 0.15. Compiles and gravity exa…
…mple runs, but boxes examples don't yet show boxes.
- Loading branch information
Showing
16 changed files
with
547 additions
and
504 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst-rhusics" | ||
version = "0.3.3" | ||
version = "0.4.1" | ||
authors = [ | ||
"Simon Rönnberg <[email protected]>", | ||
"Thomas O'Dell <[email protected]>" | ||
|
@@ -18,20 +18,25 @@ description = "Integration of `amethyst` and `rhusics`" | |
keywords = ["gamedev", "amethyst", "physics"] | ||
|
||
[dependencies] | ||
amethyst_error = { git = "https://github.com/amethyst/amethyst"} | ||
amethyst_core = { git = "https://github.com/amethyst/amethyst"} | ||
amethyst_renderer = { git = "https://github.com/amethyst/amethyst"} | ||
rhusics-ecs = { version = "0.8", git = "https://github.com/trsoluti/rhusics", features = ["serde"] } | ||
rhusics-core = { version = "0.8", git = "https://github.com/trsoluti/rhusics", features = ["specs", "serde"] } | ||
shrev = "*" | ||
# collision = { git = "https://github.com/rustgd/collision-rs", features = ["serde"]} | ||
amethyst_error = "0.5.0" | ||
amethyst_core = "0.10.0" | ||
rhusics-ecs = { version = "0.9", git = "https://github.com/trsoluti/rhusics", features = ["serializable"] } | ||
rhusics-core = { version = "0.9", git = "https://github.com/trsoluti/rhusics", features = ["specs", "serializable"] } | ||
shrev = "1.1" | ||
collision = { version = "0.20", features = ["serde"] } | ||
nalgebra = "0.17" | ||
nalgebra = "0.21" | ||
cgmath = "0.17" | ||
|
||
[dev-dependencies] | ||
amethyst = { git = "https://github.com/amethyst/amethyst" } | ||
genmesh = "*" | ||
rand = "*" | ||
shred = "*" | ||
shred-derive = "*" | ||
# 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.