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]
|
2019-01-11 17:30:13 +00:00
|
|
|
gl = ["gfx_device_gl"]
|
2019-01-07 21:10:31 +00:00
|
|
|
|
2019-01-13 20:53:55 +00:00
|
|
|
default = ["gl"]
|
2019-01-07 21:10:31 +00:00
|
|
|
|
2019-01-02 21:25:01 +00:00
|
|
|
[dependencies]
|
2019-01-12 15:57:19 +00:00
|
|
|
common = { package = "veloren-common", path = "../common" }
|
|
|
|
client = { package = "veloren-client", path = "../client" }
|
2019-01-02 21:25:01 +00:00
|
|
|
|
|
|
|
# Graphics
|
2019-01-11 17:30:13 +00:00
|
|
|
gfx = "0.17"
|
|
|
|
gfx_device_gl = { version = "0.15", optional = true }
|
|
|
|
gfx_window_glutin = "0.28"
|
|
|
|
glutin = "0.19"
|
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"
|
2019-01-11 23:18:34 +00:00
|
|
|
log = "0.4"
|
|
|
|
pretty_env_logger = "0.3"
|
2019-01-13 20:53:55 +00:00
|
|
|
dot_vox = "1.0"
|
2019-01-30 12:11:34 +00:00
|
|
|
image = "0.21"
|