From 6dc7b5d9128d1e2979d6913c1413c6dfe23f848b Mon Sep 17 00:00:00 2001 From: Henry Sloan Date: Sun, 9 Aug 2020 01:15:33 -0400 Subject: [PATCH] Use amethyst provided by crates.io --- Cargo.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95eac80..7a7cde3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,11 +5,7 @@ authors = ["Team Awesome"] edition = "2018" [dependencies] -# amethyst = { git = "https://github.com/machine-hum/amethyst" } -# amethyst = { git = "https://github.com/amethyst/amethyst" } -amethyst = { path = "../amethyst" } - -# amethyst = "0.15.0" +amethyst = "0.15.0" log = { version = "0.4.8", features = ["serde"] } tiled = { git = "https://github.com/mattyhall/rs-tiled" } serde = { version = "1", features = ["derive"] } @@ -23,13 +19,13 @@ array-init = "0.1.1" [features] default = ["vulkan"] # Windows / Linux (make sure you have alsa-utils on linux installed) -#default = ["metal"] # macOS +# default = ["metal"] # macOS vulkan = ["amethyst/vulkan"] # nightly = ["amethyst/nightly"] metal = ["amethyst/metal"] -#profile is set to the --release profile +# profile is set to the --release profile [profile.dev] opt-level = 3 debug = false