blob: 4d2cd479ad4da6436109ab6dfebba17785cf537b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "stockton-render"
version = "0.1.0"
authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"]
[dependencies]
stockton-bsp = { git = "https://github.com/tcmal/rust-bsp.git" }
stockton-types = { path = "../stockton-types" }
winit = "^0.21"
gfx-hal = "^0.5"
arrayvec = "0.4.10"
nalgebra-glm = "^0.6"
shaderc = "0.6.1"
log = "0.4.0"
image = "0.23.2"
[features]
default = ["vulkan"]
vulkan = ["gfx-backend-vulkan"]
[dependencies.gfx-backend-vulkan]
version = "^0.5"
features = ["x11"]
optional = true
|