mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
153c6c3b13
So first off all we had to update the toolchain, i think everything in september is okay, but we got with this current version. Then we had to update several dependencies, which broke: - need a specific fix of winit, i think we want to get rid of this with iced, hopefully, because its buggy as hell. update wayland client to 0.27 - use a updated version of glutin which has wayland-client 0.27 and no longer the broke version 0.23 - update conrod to use modern copypasta 0.7 - use `packed_simd_2` instead of `packed_simd` as the owner of the create abandoned the project. - adjust all the coding to work with the newer glutin and winit version. that also includes fixing a macro in one of the dependencies that did some crazy conversion from 1 event type to another event type. It was called `convert_event` - make a `simd` feature which is default and introduce conditional compiling. AS I HAVE NO IDEA OF SIMD AND THE CODE. AND I DIDN'T INTRODUCE THE ERROR IN THE FIRST PLACE, WE PANIC FOR NON SIMD CASE FOR NOW. BUT IT WORKS FOR TESTS. - tarpaulin doesnt support no-default-features. so we have to `sed` them away. semms fair.
57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[package]
|
|
name = "veloren-common"
|
|
version = "0.7.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Maciej Ćwięka <mckol363@gmail.com>", "Imbris <imbrisf@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
no-assets = []
|
|
tracy = ["tracy-client"]
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
arraygen = "0.1.13"
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", branch = "specs-git" }
|
|
|
|
roots = "0.0.6"
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "7a2e348ab2223818bad487695c66c43db88050a5" }
|
|
vek = { version = "0.12.0", features = ["serde"] }
|
|
directories-next = "1.0.1"
|
|
dot_vox = "4.0"
|
|
image = { version = "0.23.8", default-features = false, features = ["png"] }
|
|
serde = { version = "1.0.110", features = ["derive", "rc"] }
|
|
serde_json = "1.0.50"
|
|
serde_repr = "0.1.6"
|
|
ron = { version = "0.6", default-features = false }
|
|
tracing = { version = "0.1", default-features = false }
|
|
rand = "0.7"
|
|
rayon = "1.3.0"
|
|
lazy_static = "1.4.0"
|
|
hashbrown = { version = "0.7.2", features = ["rayon", "serde", "nightly"] }
|
|
parking_lot = "0.9.0"
|
|
crossbeam = "0.7"
|
|
notify = "5.0.0-pre.3"
|
|
indexmap = "1.3.0"
|
|
sum_type = "0.2.0"
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "b943c85e4a38f5ec60cd18c34c73097640162bfe" }
|
|
slab = "0.4.2"
|
|
enum-iterator = "0.6"
|
|
num-traits = "0.2"
|
|
num-derive = "0.3"
|
|
|
|
# Tracy
|
|
tracy-client = { version = "0.8.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "chonk_benchmark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "color_benchmark"
|
|
harness = false
|