veloren/world/Cargo.toml

19 lines
461 B
TOML
Raw Normal View History

2019-01-15 15:13:11 +00:00
[package]
name = "veloren-world"
2019-08-01 10:32:14 +00:00
version = "0.3.0"
2019-01-15 15:13:11 +00:00
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018"
[dependencies]
common = { package = "veloren-common", path = "../common" }
2019-07-28 15:47:14 +00:00
vek = "0.9.8"
noise = "0.5.1"
2019-08-11 20:38:28 +00:00
hashbrown = { version = "0.5.0", features = ["serde", "nightly"] }
2019-07-28 15:47:14 +00:00
lazy_static = "1.3.0"
2019-07-29 13:42:26 +00:00
rand = "0.7.0"
2019-07-30 14:10:59 +00:00
rand_chacha = "0.2.1"
2019-08-18 22:55:04 +00:00
zerocopy = "0.2.8"
[dev-dependencies]
minifb = { git = "https://github.com/emoon/rust_minifb.git" }