veloren/world/Cargo.toml

34 lines
967 B
TOML
Raw Normal View History

2019-01-15 15:13:11 +00:00
[package]
name = "veloren-world"
2020-05-15 22:50:40 +00:00
version = "0.6.0"
2019-01-15 15:13:11 +00:00
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018"
[dependencies]
bincode = "1.2.0"
2019-01-15 15:13:11 +00:00
common = { package = "veloren-common", path = "../common" }
2020-04-02 00:03:15 +00:00
bitvec = "0.17.4"
fxhash = "0.2.1"
image = { version = "0.22.3", default-features = false, features = ["png"] }
itertools = "0.8.2"
vek = "0.11.0"
noise = { version = "0.6.0", default-features = false }
num = "0.2.0"
ordered-float = "1.0"
hashbrown = { version = "0.6", features = ["rayon", "serde", "nightly"] }
2019-09-17 14:12:17 +00:00
lazy_static = "1.4.0"
tracing = { version = "0.1", default-features = false }
rand = "0.7"
2019-07-30 14:10:59 +00:00
rand_chacha = "0.2.1"
2019-09-23 02:18:09 +00:00
arr_macro = "0.1.2"
packed_simd = "0.3.3"
rayon = "^1.3.0"
roots = "0.0.5"
serde = "1.0"
serde_derive = "1.0"
ron = { version = "0.6", default-features = false }
[dev-dependencies]
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["fmt", "chrono", "ansi", "smallvec"] }
2020-04-23 19:05:44 +00:00
minifb = "0.14.0"