2019-01-02 21:25:01 +00:00
|
|
|
[package]
|
2019-04-12 09:22:37 +00:00
|
|
|
name = "veloren-voxygen"
|
2019-04-12 09:17:59 +00:00
|
|
|
version = "0.2.0"
|
2019-01-02 21:25:01 +00:00
|
|
|
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-04-17 13:41:34 +00:00
|
|
|
server = { package = "veloren-server", path = "../server" }
|
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-04-15 17:51:26 +00:00
|
|
|
winit = {version = "0.18", features = ["serde"]}
|
2019-04-13 14:33:42 +00:00
|
|
|
conrod_core = { git = "https://gitlab.com/veloren/conrod.git" }
|
|
|
|
conrod_winit = { git = "https://gitlab.com/veloren/conrod.git" }
|
2019-04-15 06:07:56 +00:00
|
|
|
euc = "0.2"
|
2019-01-02 22:08:13 +00:00
|
|
|
|
2019-03-19 14:12:42 +00:00
|
|
|
# ECS
|
|
|
|
specs = "0.14"
|
|
|
|
|
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"
|
2019-04-20 01:35:12 +00:00
|
|
|
dot_vox = "4.0"
|
2019-01-30 12:11:34 +00:00
|
|
|
image = "0.21"
|
2019-04-15 17:51:26 +00:00
|
|
|
config = "0.9"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
toml = "0.4"
|
2019-04-15 06:07:56 +00:00
|
|
|
guillotiere = "0.4"
|
|
|
|
fnv = "1.0"
|
2019-04-25 11:49:36 +00:00
|
|
|
simplelog = "0.5"
|
|
|
|
msgbox = "0.1"
|
2019-04-25 16:24:00 +00:00
|
|
|
directories = "1.0"
|
2019-05-06 14:26:10 +00:00
|
|
|
portpicker = "0.1"
|