veloren/voxygen/Cargo.toml

69 lines
1.8 KiB
TOML
Raw Normal View History

[package]
name = "veloren-voxygen"
2019-10-10 13:32:53 +00:00
version = "0.4.0"
2019-08-04 19:54:08 +00:00
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
edition = "2018"
default-run = "veloren-voxygen"
2019-01-07 21:10:31 +00:00
[features]
2019-01-11 17:30:13 +00:00
gl = ["gfx_device_gl"]
2019-10-05 15:35:59 +00:00
discord = ["discord-rpc-sdk", "lazy_static"]
singleplayer = ["server"]
2019-01-07 21:10:31 +00:00
default = ["gl", "singleplayer", "msgbox"]
2019-01-07 21:10:31 +00:00
[dependencies]
common = { package = "veloren-common", path = "../common" }
client = { package = "veloren-client", path = "../client" }
# Graphics
gfx = "0.18.2"
2019-09-08 15:15:46 +00:00
gfx_device_gl = { version = "0.16.2", optional = true }
2019-07-28 15:47:14 +00:00
gfx_window_glutin = "0.31.0"
glutin = "0.21.1"
winit = { version = "0.19.4", features = ["serde"] }
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
# ECS
specs = "0.14.2"
2019-01-02 22:08:13 +00:00
# Mathematics
vek = { version = "0.9.9", features = ["serde"] }
2019-01-07 21:10:31 +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-10-05 15:35:59 +00:00
lazy_static = { version = "1.4.0", optional = true }
# Singleplayer
server = { package = "veloren-server", path = "../server", 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.6"
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.3"
serde = "1.0.102"
serde_derive = "1.0.102"
ron = "0.5.1"
guillotiere = { git = "https://github.com/Imberflur/guillotiere" }
simplelog = "0.7.4"
msgbox = { version = "0.4.0", optional = true }
2019-07-28 15:47:14 +00:00
directories = "2.0.2"
num = "0.2.0"
backtrace = "0.3.40"
rand = "0.7.2"
2019-06-06 09:04:37 +00:00
frustum_query = "0.1.2"
# context for pinning to commit: https://gitlab.com/veloren/veloren/issues/280
rodio = { git = "https://github.com/RustAudio/rodio", rev = "e5474a2"}
cpal = "0.10"
2019-07-28 15:47:14 +00:00
crossbeam = "0.7.2"
hashbrown = { version = "0.6.2", features = ["serde", "nightly"] }
chrono = "0.4.9"
rust-argon2 = "0.5"
[target.'cfg(windows)'.build-dependencies]
2019-10-04 16:44:31 +00:00
winres = "0.1"