blob: 3144943ca413208ae3a00220a110f4bf440f5954 (
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
25
26
27
28
29
|
[package]
name = "render"
version = "0.1.0"
authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"]
edition = "2018"
[dependencies]
stockton-render = { path = "../../stockton-render" }
stockton-types = { path = "../../stockton-types" }
stockton-bsp = "2.0.0"
winit = "0.19.1"
log = "0.4.0"
simple_logger = "1.0"
[target.'cfg(feature = "gl")'.dependencies.stockton-render]
path = "../../stockton-render"
features = ["gl"]
# [target.'cfg(feature = "dx11")'.dependencies.stockton-render]
# path = "../../stockton-render"
# features = ["dx11"]
# [target.'cfg(feature = "dx12")'.dependencies.stockton-render]
# path = "../../stockton-render"
# features = ["dx12"]
# [target.'cfg(feature = "vulkan")'.dependencies.stockton-render]
# path = "../../stockton-render"
# features = ["vulkan"]
|