-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog: - Updates specs to 0.16.0 NOTE: Could not update to 0.17.0, there was a problem with the crate component_group macro.
- Loading branch information
1 parent
e4f4c92
commit 899aba3
Showing
47 changed files
with
1,448 additions
and
1,122 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -5,16 +5,13 @@ authors = ["Sunjay Varma <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
specs = "*" | ||
specs-derive = "*" | ||
shred = "*" | ||
shred-derive = "*" | ||
specs = { version = "0.16.0", features=["specs-derive", "shred-derive"] } | ||
rand = "0.7" | ||
base64 = "0.13" | ||
lazy_static = "1.4" | ||
colored = "2.0" | ||
rayon = "1.5" | ||
component_group = "1.0" | ||
component_group = "3.0.0" | ||
rusttype = "0.7" | ||
|
||
[dependencies.sdl2] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
mod physics; | ||
mod character; | ||
mod entrance; | ||
mod graphics; | ||
mod stairs; | ||
mod item; | ||
mod entrance; | ||
mod physics; | ||
mod stairs; | ||
|
||
pub use self::physics::*; | ||
pub use self::character::*; | ||
pub use self::entrance::*; | ||
pub use self::graphics::*; | ||
pub use self::stairs::*; | ||
pub use self::item::*; | ||
pub use self::entrance::*; | ||
pub use self::physics::*; | ||
pub use self::stairs::*; |
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.