2019-01-02 21:25:01 +00:00
|
|
|
[package]
|
|
|
|
name = "voxygen"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
[features]
|
|
|
|
empty = ["rendy/empty"]
|
|
|
|
dx12 = ["rendy/dx12"]
|
|
|
|
metal = ["rendy/metal"]
|
|
|
|
vulkan = ["rendy/vulkan"]
|
|
|
|
|
|
|
|
default = ["empty"]
|
|
|
|
|
2019-01-02 21:25:01 +00:00
|
|
|
[dependencies]
|
|
|
|
common = { path = "../common" }
|
|
|
|
|
|
|
|
# Graphics
|
2019-01-07 21:10:31 +00:00
|
|
|
winit = "0.18"
|
|
|
|
rendy = { git = "https://github.com/omni-viral/rendy" }
|
2019-01-02 22:08:13 +00:00
|
|
|
|
|
|
|
# Mathematics
|
|
|
|
vek = "0.9"
|
2019-01-07 21:10:31 +00:00
|
|
|
|
|
|
|
# Utility
|
|
|
|
glsl-include = "0.2"
|
|
|
|
failure = "0.1"
|
|
|
|
lazy_static = "1.1"
|