mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
c212de00c2
- replace serde_derive by feature of serde incl. source code modifications to compile - reduce futures-timer to "2.0" to be same as async_std - update notify - removed mio, bincode and lz4 compress in common as networking is now in own crate btw there is a better lz4 compress crate, which is newer than 2017 - update prometheus to 0.9 - can't update uvth yet due to usues - hashbrown to 7.2 to only need a single version - libsqlite3 update - image didn't change as there is a problem with `image 0.23` - switch old directories with newer directories-next - no num upgrade as we still depend on num 0.2 anyways - rodio and cpal upgrade - const-tewaker update - dispatch (untested) update - git2 update - iterations update
33 lines
985 B
TOML
33 lines
985 B
TOML
[package]
|
|
name = "veloren-world"
|
|
version = "0.6.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bincode = "1.2.0"
|
|
common = { package = "veloren-common", path = "../common" }
|
|
bitvec = "0.17.4"
|
|
fxhash = "0.2.1"
|
|
image = { version = "0.22.5", default-features = false, features = ["png"] }
|
|
itertools = "0.9"
|
|
vek = "0.11.0"
|
|
noise = { version = "0.6.0", default-features = false }
|
|
num = "0.2"
|
|
ordered-float = "1.0"
|
|
hashbrown = { version = "0.7.2", features = ["rayon", "serde", "nightly"] }
|
|
lazy_static = "1.4.0"
|
|
tracing = { version = "0.1", default-features = false }
|
|
rand = "0.7"
|
|
rand_chacha = "0.2.1"
|
|
arr_macro = "0.1.2"
|
|
packed_simd = "0.3.3"
|
|
rayon = "^1.3.0"
|
|
roots = "0.0.5"
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
|
ron = { version = "0.6", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["fmt", "chrono", "ansi", "smallvec"] }
|
|
minifb = "0.14.0"
|