diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
commit | 0353181306702c40ad0fe482b5c2b159b46794a4 (patch) | |
tree | 33acc6a9e8ea4705884cf93b78cf869008f71832 /stockton-skeleton/Cargo.toml | |
parent | 664f0b0777ba96298b29f0c753d52a81cbb233f1 (diff) |
refactor(all): rename some crates
Diffstat (limited to 'stockton-skeleton/Cargo.toml')
-rw-r--r-- | stockton-skeleton/Cargo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/stockton-skeleton/Cargo.toml b/stockton-skeleton/Cargo.toml new file mode 100644 index 0000000..8e3df4b --- /dev/null +++ b/stockton-skeleton/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "stockton-skeleton" +version = "0.1.0" +authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"] +edition = "2018" + +[dependencies] +stockton-input = { path = "../stockton-input" } +stockton-levels = { path = "../stockton-levels" } +stockton-types = { path = "../stockton-types" } +winit = "^0.21" +gfx-hal = "^0.8.0" +arrayvec = "0.4.10" +nalgebra-glm = "^0.6" +shaderc = "^0.7" +log = "0.4.0" +image = "0.23.11" +legion = { version = "^0.3" } +rendy-memory = { path = "../rendy-memory" } +rendy-descriptor = { path = "../rendy-descriptor" } +anyhow = "1.0.40" +thiserror = "1.0.25" +derive_builder = "0.10.2" + +[features] +default = ["vulkan"] +vulkan = ["gfx-backend-vulkan"] + +[dependencies.gfx-backend-vulkan] +version = "^0.8.0" +optional = true |