2019-01-02 21:25:01 +00:00
|
|
|
[package]
|
2019-04-12 09:22:37 +00:00
|
|
|
name = "veloren-voxygen"
|
2019-08-01 10:32:14 +00:00
|
|
|
version = "0.3.0"
|
2019-08-04 19:54:08 +00:00
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
|
2019-01-02 21:25:01 +00:00
|
|
|
edition = "2018"
|
2019-05-27 20:51:42 +00:00
|
|
|
default-run = "veloren-voxygen"
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
[features]
|
2019-01-11 17:30:13 +00:00
|
|
|
gl = ["gfx_device_gl"]
|
2019-06-19 19:25:08 +00:00
|
|
|
discord = ["discord-rpc-sdk"]
|
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-07-28 15:47:14 +00:00
|
|
|
gfx = "0.18.1"
|
|
|
|
gfx_device_gl = { version = "0.16.1", optional = true }
|
|
|
|
gfx_window_glutin = "0.31.0"
|
|
|
|
glutin = "0.21.0"
|
|
|
|
winit = { version = "0.19.1", 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-07-28 15:47:14 +00:00
|
|
|
euc = "0.3.0"
|
2019-01-02 22:08:13 +00:00
|
|
|
|
2019-03-19 14:12:42 +00:00
|
|
|
# ECS
|
2019-08-01 23:32:33 +00:00
|
|
|
specs = "0.14.2"
|
2019-03-19 14:12:42 +00:00
|
|
|
|
2019-01-02 22:08:13 +00:00
|
|
|
# Mathematics
|
2019-07-28 15:47:14 +00:00
|
|
|
vek = "0.9.8"
|
2019-01-07 21:10:31 +00:00
|
|
|
|
2019-06-04 19:57:13 +00:00
|
|
|
# discord
|
2019-06-19 19:25:08 +00:00
|
|
|
discord-rpc-sdk = { git = "https://github.com/Songtronix/rust-discord-rpc.git", optional = true }
|
2019-06-04 19:57:13 +00:00
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
# Utility
|
2019-07-28 15:47:14 +00:00
|
|
|
glsl-include = "0.3.1"
|
|
|
|
failure = "0.1.5"
|
|
|
|
lazy_static = "1.3.0"
|
2019-07-29 13:42:26 +00:00
|
|
|
log = "0.4.8"
|
2019-07-28 15:47:14 +00:00
|
|
|
dot_vox = "4.0.0"
|
|
|
|
image = "0.22.0"
|
2019-07-29 13:42:26 +00:00
|
|
|
serde = "1.0.98"
|
|
|
|
serde_derive = "1.0.98"
|
2019-05-26 09:21:51 +00:00
|
|
|
ron = "0.5.1"
|
2019-07-28 15:47:14 +00:00
|
|
|
guillotiere = "0.4.2"
|
|
|
|
simplelog = "0.6.0"
|
2019-05-24 21:26:25 +00:00
|
|
|
msgbox = { git = "https://github.com/bekker/msgbox-rs.git" }
|
2019-07-28 15:47:14 +00:00
|
|
|
directories = "2.0.2"
|
|
|
|
portpicker = "0.1.0"
|
|
|
|
num = "0.2.0"
|
|
|
|
backtrace = "0.3.33"
|
|
|
|
rand = "0.7.0"
|
2019-06-06 09:04:37 +00:00
|
|
|
frustum_query = "0.1.2"
|
2019-07-02 18:35:40 +00:00
|
|
|
rodio = { git = "https://github.com/desttinghim/rodio.git", rev = "dd93f905c1afefaac03c496a666ecab27d3e391b" }
|
2019-07-28 15:47:14 +00:00
|
|
|
crossbeam = "0.7.2"
|
2019-07-23 23:43:27 +00:00
|
|
|
heaptrack = "0.3.0"
|
2019-08-11 20:38:28 +00:00
|
|
|
hashbrown = { version = "0.5.0", features = ["serde", "nightly"] }
|
2019-08-15 22:07:09 +00:00
|
|
|
parking_lot = "0.9.0"
|