forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5637164
commit 45a3c7e
Showing
18 changed files
with
95 additions
and
95 deletions.
There are no files selected for viewing
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" | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
authors = ["Eyal Kalderon <[email protected]>", "Amethyst Foundation <[email protected]>"] | ||
edition = "2018" | ||
description = "Data-oriented game engine written in Rust" | ||
|
@@ -104,22 +104,22 @@ members = [ | |
] | ||
|
||
[dependencies] | ||
amethyst_animation = { path = "amethyst_animation", version = "0.6.0", optional = true } | ||
amethyst_assets = { path = "amethyst_assets", version = "0.7.0" } | ||
amethyst_audio = { path = "amethyst_audio", version = "0.6.0", optional = true } | ||
amethyst_config = { path = "amethyst_config", version = "0.10.0" } | ||
amethyst_core = { path = "amethyst_core", version = "0.6.0" } | ||
amethyst_error = { path = "amethyst_error", version = "0.1.0" } | ||
amethyst_controls = { path = "amethyst_controls", version = "0.5.0" } | ||
amethyst_derive = { path = "amethyst_derive", version = "0.4.0" } | ||
amethyst_gltf = { path = "amethyst_gltf", version = "0.6.0", optional = true } | ||
amethyst_network = { path = "amethyst_network", version = "0.4.0", optional = true } | ||
amethyst_locale = { path = "amethyst_locale", version = "0.5.0", optional = true } | ||
amethyst_rendy = { path = "amethyst_rendy", version = "0.1.0", features = ["window"], optional = true } | ||
amethyst_input = { path = "amethyst_input", version = "0.7.0" } | ||
amethyst_ui = { path = "amethyst_ui", version = "0.6.0" } | ||
amethyst_utils = { path = "amethyst_utils", version = "0.6.0" } | ||
amethyst_window = { path = "amethyst_window", version = "0.1.0" } | ||
amethyst_animation = { path = "amethyst_animation", version = "0.7.0", optional = true } | ||
amethyst_assets = { path = "amethyst_assets", version = "0.8.0" } | ||
amethyst_audio = { path = "amethyst_audio", version = "0.7.0", optional = true } | ||
amethyst_config = { path = "amethyst_config", version = "0.11.0" } | ||
amethyst_core = { path = "amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "amethyst_error", version = "0.2.0" } | ||
amethyst_controls = { path = "amethyst_controls", version = "0.6.0" } | ||
amethyst_derive = { path = "amethyst_derive", version = "0.5.0" } | ||
amethyst_gltf = { path = "amethyst_gltf", version = "0.7.0", optional = true } | ||
amethyst_network = { path = "amethyst_network", version = "0.5.0", optional = true } | ||
amethyst_locale = { path = "amethyst_locale", version = "0.6.0", optional = true } | ||
amethyst_rendy = { path = "amethyst_rendy", version = "0.2.0", features = ["window"], optional = true } | ||
amethyst_input = { path = "amethyst_input", version = "0.8.0" } | ||
amethyst_ui = { path = "amethyst_ui", version = "0.7.0" } | ||
amethyst_utils = { path = "amethyst_utils", version = "0.7.0" } | ||
amethyst_window = { path = "amethyst_window", version = "0.2.0" } | ||
crossbeam-channel = "0.3.9" | ||
derivative = "1.0" | ||
fern = { version = "0.5", features = ["colored"] } | ||
|
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_animation" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Animation support for Amethyst" | ||
|
@@ -18,11 +18,11 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.7.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.4.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" } | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.5.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" } | ||
derivative = "1.0" | ||
fnv = "1" | ||
hibitset = { version = "0.5.1", features = ["parallel"] } | ||
|
@@ -38,4 +38,4 @@ thread_profiler = { version = "0.3", optional = true } | |
[features] | ||
profiler = [ "thread_profiler/thread_profiler" ] | ||
nightly = [ "amethyst_core/nightly" ] | ||
float64 = ["amethyst_core/float64"] | ||
float64 = ["amethyst_core/float64"] |
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_assets" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["torkleyy <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
@@ -21,8 +21,8 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
crossbeam-queue = "0.1.2" | ||
derivative = "1.0" | ||
fnv = "1" | ||
|
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_audio" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Xaeroxe <[email protected]>"] | ||
edition = "2018" | ||
description = "Audio support for Amethyst" | ||
|
@@ -20,17 +20,17 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0"} | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0"} | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0"} | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0"} | ||
cpal = "0.8" | ||
log = "0.4.6" | ||
rodio = "0.9" | ||
serde = { version = "1.0", features = ["derive"] } | ||
thread_profiler = { version = "0.3", optional = true } | ||
|
||
[dev-dependencies] | ||
amethyst_utils = { path = "../amethyst_utils", version = "0.6.0"} | ||
amethyst_utils = { path = "../amethyst_utils", version = "0.7.0"} | ||
|
||
[dependencies.smallvec] | ||
version = "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_config" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Aceeri <[email protected]>"] | ||
edition = "2018" | ||
description = "Loading from .ron files into Rust structures with defaults to prevent hard errors." | ||
|
@@ -28,4 +28,4 @@ serde_derive = "1" | |
|
||
[features] | ||
profiler = [ "thread_profiler/thread_profiler" ] | ||
nightly = [] | ||
nightly = [] |
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_controls" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Joël Lupien <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst controls" | ||
|
@@ -16,10 +16,10 @@ appveyor = { repository = "amethyst/amethyst" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.7.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.8.0" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
winit = { version = "0.19", features = ["serde"] } | ||
log = "0.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_core" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst core" | ||
|
@@ -20,7 +20,7 @@ nalgebra = { version = "0.18.0", features = ["serde-serialize", "mint"] } | |
alga = { version = "0.9.0", default-features = false } | ||
alga_derive = "0.9.0" | ||
approx = "0.3" | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
fnv = "1" | ||
hibitset = { version = "0.5.2", features = ["parallel"] } | ||
log = "0.4.6" | ||
|
@@ -37,7 +37,7 @@ derive-new = "0.5.6" | |
thread_profiler = { version = "0.3", optional = true } | ||
|
||
[dev-dependencies] | ||
amethyst = { path = "..", version = "0.11.0" } | ||
amethyst = { path = "..", version = "0.12.0" } | ||
ron = "0.5.1" | ||
|
||
[features] | ||
|
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_derive" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst derive" | ||
|
@@ -21,10 +21,10 @@ quote = "0.6" | |
proc-macro2 = "0.4" | ||
|
||
[dev-dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_test = { path = "../amethyst_test", version = "0.2.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
amethyst_test = { path = "../amethyst_test", version = "0.3.0" } | ||
|
||
[lib] | ||
name = "amethyst_derive" | ||
|
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_error" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["John-John Tedro <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
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_gltf" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Rhuagh <[email protected]>"] | ||
edition = "2018" | ||
description = "GLTF asset loading" | ||
|
@@ -16,11 +16,11 @@ appveyor = { repository = "amethyst/amethyst" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.7.0" } | ||
amethyst_animation = { path = "../amethyst_animation/", version = "0.6.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" } | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.8.0" } | ||
amethyst_animation = { path = "../amethyst_animation/", version = "0.7.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" } | ||
err-derive = "0.1" | ||
base64 = "0.10" | ||
fnv = "1" | ||
|
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_input" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["Rhuagh <[email protected]>", "Xaeroxe <[email protected]>"] | ||
edition = "2018" | ||
description = "Input rebinding " | ||
|
@@ -16,10 +16,10 @@ appveyor = { repository = "amethyst/amethyst" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" } | ||
amethyst_config = { path = "../amethyst_config/", version = "0.10.0" } | ||
amethyst_window = { path = "../amethyst_window/", version = "0.1.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" } | ||
amethyst_config = { path = "../amethyst_config/", version = "0.11.0" } | ||
amethyst_window = { path = "../amethyst_window/", version = "0.2.0" } | ||
derivative = "1.0" | ||
fnv = "1" | ||
serde = { version = "1", features = ["derive"] } | ||
|
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_locale" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Joël Lupien <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
@@ -21,9 +21,9 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
fluent = "0.6.0" | ||
# `fluent`'s Cargo.toml is happy to take `intl_pluralrules` 1.1.0, but the code is not compatible, | ||
|
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_network" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ | ||
"Joël Lupien (Jojolepro) <[email protected]>", | ||
"Lucio Franco (LucioFranco) <[email protected]>", | ||
|
@@ -23,8 +23,8 @@ nightly = [ "amethyst_core/nightly" ] | |
float64 = ["amethyst_core/float64"] | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.6" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
serde = { version = "1", features = ["derive"] } | ||
shrev = "1.0" | ||
shred = "0.7" | ||
|
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_rendy" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
authors = ["Amethyst Foundation <[email protected]>"] | ||
edition = "2018" | ||
description = "High-level rendering engine with multiple backends" | ||
|
@@ -12,12 +12,12 @@ license = "MIT/Apache-2.0" | |
features = ["shader-compiler", "test-support", "winit", "vulkan"] | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.6" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.4" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.1", optional = true } | ||
amethyst_config = { path = "../amethyst_config", version = "0.10" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.7" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.5" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.2", optional = true } | ||
amethyst_config = { path = "../amethyst_config", version = "0.11" } | ||
derive-new = "0.5.6" | ||
failure = "0.1" | ||
genmesh = "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_test" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Azriel Hoh <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst test utilities crate" | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/amethyst/amethyst" | |
license = "MIT/Apache-2.0" | ||
|
||
[dependencies] | ||
amethyst = { path = "..", version = "0.11.0" } | ||
amethyst = { path = "..", version = "0.12.0" } | ||
boxfnonce = "0.1" | ||
derivative = "1.0" | ||
derive-new = "0.5" | ||
|
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_ui" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Jacob Kiesel <[email protected]>", "Joël Lupien <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst UI crate" | ||
|
@@ -13,13 +13,13 @@ repository = "https://github.com/amethyst/amethyst" | |
license = "MIT/Apache-2.0" | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" } | ||
amethyst_audio = { path = "../amethyst_audio", version = "0.6.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.6.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.1.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.7.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.1.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" } | ||
amethyst_audio = { path = "../amethyst_audio", version = "0.7.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.7.0" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.2.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.8.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.2.0" } | ||
clipboard = "0.5" | ||
derivative = "1.0" | ||
derive-new = "0.5.6" | ||
|
Oops, something went wrong.