veloren/voxygen/Cargo.toml

29 lines
477 B
TOML
Raw Normal View History

[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"]
[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"