veloren/voxygen/Cargo.toml

95 lines
3.1 KiB
TOML
Raw Normal View History

[package]
name = "veloren-voxygen"
2020-05-15 22:50:40 +00:00
version = "0.6.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"
2020-01-09 06:05:20 +00:00
# Cargo thinks it should build the voxygen binary even when a specific bench is specified for building
# Uncomment below and comment out default-run if you want to avoid this
# autobins = false
2019-01-07 21:10:31 +00:00
[features]
2019-01-11 17:30:13 +00:00
gl = ["gfx_device_gl"]
singleplayer = ["server"]
2020-03-19 17:19:05 +00:00
tweak = ["const-tweaker"]
2020-06-17 07:49:14 +00:00
hot-anim = ["anim/use-dyn-lib"]
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" }
2020-06-17 07:49:14 +00:00
anim = { package = "veloren-voxygen-anim", path = "src/anim", default-features = false }
# Graphics
gfx = "0.18.2"
2019-09-08 15:15:46 +00:00
gfx_device_gl = { version = "0.16.2", optional = true }
2020-03-13 04:05:06 +00:00
old_school_gfx_glutin_ext = "0.24"
glutin = "0.24.1"
2020-03-13 04:05:06 +00:00
winit = { version = "0.22.2", features = ["serde"] }
2020-02-08 03:26:17 +00:00
conrod_core = { git = "https://gitlab.com/veloren/conrod.git" }
conrod_winit = { git = "https://gitlab.com/veloren/conrod.git" }
euc = { git = "https://github.com/zesterer/euc.git" }
2019-01-02 22:08:13 +00:00
# ECS
specs = { git = "https://github.com/amethyst/specs.git", rev = "7a2e348ab2223818bad487695c66c43db88050a5" }
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", branch = "specs-git" }
2019-01-02 22:08:13 +00:00
# Mathematics
vek = { version = "0.11.0", features = ["serde"] }
2019-01-07 21:10:31 +00:00
2020-03-10 21:00:13 +00:00
# Controller
gilrs = { version = "0.7", features = ["serde"] }
# 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"
dot_vox = "4.0"
image = { version = "0.22.5", default-features = false, features = ["ico", "png"] }
serde = "1.0"
serde_derive = "1.0"
ron = { version = "0.6", default-features = false }
guillotiere = { git = "https://github.com/Imberflur/guillotiere" }
msgbox = { git = "https://github.com/bekker/msgbox-rs.git", default-features = false, rev = "68fe39a", optional = true }
directories-next = "1.0.1"
num = "0.2"
backtrace = "0.3.40"
rand = "0.7"
2020-01-07 16:40:06 +00:00
treeculler = { git = "https://gitlab.com/yusdacra/treeculler.git" }
rodio = { version = "0.11", default-features = false, features = ["wav", "vorbis"] }
cpal = "0.11"
crossbeam = "=0.7.2"
2020-07-06 07:15:06 +00:00
hashbrown = { version = "0.7.2", features = ["rayon", "serde", "nightly"] }
chrono = "0.4.9"
2020-01-20 13:37:29 +00:00
bincode = "1.2"
deunicode = "1.0"
uvth = "3.1.1"
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "223a4097f7ebc8d451936dccb5e6517194bbf086" }
const-tweaker = { version = "0.3.1", optional = true }
# Logging
2020-06-24 12:35:52 +00:00
tracing = "0.1"
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec" , "tracing-log"] }
tracing-log = "0.1.1"
tracing-appender = "0.1"
[target.'cfg(target_os = "macos")'.dependencies]
2020-07-07 09:16:15 +00:00
dispatch = "0.1.4"
[target.'cfg(windows)'.build-dependencies]
2019-10-04 16:44:31 +00:00
winres = "0.1"
2020-01-09 06:05:20 +00:00
[dev-dependencies]
criterion = "0.3"
git2 = "0.13"
2020-01-09 06:05:20 +00:00
world = { package = "veloren-world", path = "../world" }
2020-02-08 02:09:56 +00:00
gfx_window_glutin = { version = "0.31.0", features = ["headless"] }
2020-01-09 06:05:20 +00:00
[[bench]]
name = "meshing_benchmark"
harness = false