2020-12-01 00:28:00 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
2022-01-26 14:46:40 +00:00
|
|
|
edition = "2021"
|
2021-04-21 17:10:13 +00:00
|
|
|
name = "veloren-common-systems"
|
2021-06-12 08:14:07 +00:00
|
|
|
version = "0.10.0"
|
2020-12-01 00:28:00 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
|
|
|
|
default = ["simd"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-12-13 17:11:55 +00:00
|
|
|
common = { package = "veloren-common", path = ".." }
|
|
|
|
common-net = { package = "veloren-common-net", path = "../net" }
|
2021-03-08 22:40:02 +00:00
|
|
|
common-ecs = { package = "veloren-common-ecs", path = "../ecs" }
|
|
|
|
common-base = { package = "veloren-common-base", path = "../base" }
|
2020-12-01 00:28:00 +00:00
|
|
|
|
2021-01-26 20:23:18 +00:00
|
|
|
rand = "0.8"
|
2020-12-16 13:17:28 +00:00
|
|
|
rayon = "1.5"
|
2020-12-01 00:28:00 +00:00
|
|
|
tracing = { version = "0.1", default-features = false }
|
2022-04-25 06:37:24 +00:00
|
|
|
vek = { version = "0.15.8", features = ["serde"] }
|
2022-07-06 07:20:22 +00:00
|
|
|
ordered-float = { version = "3", default-features = false }
|
2020-12-01 00:28:00 +00:00
|
|
|
|
2020-12-01 12:13:07 +00:00
|
|
|
# Data structures
|
2022-07-06 07:20:22 +00:00
|
|
|
hashbrown = { version = "0.12", features = ["rayon", "serde", "nightly"] }
|
2020-12-01 12:13:07 +00:00
|
|
|
indexmap = "1.3.0"
|
|
|
|
slab = "0.4.2"
|
|
|
|
|
2020-12-01 00:28:00 +00:00
|
|
|
# ECS
|
2022-07-06 07:20:22 +00:00
|
|
|
specs = { version = "0.18", features = ["serde", "storage-event-control", "derive"] }
|
2020-12-01 00:28:00 +00:00
|
|
|
|
2021-03-16 05:13:52 +00:00
|
|
|
# Tweak running code
|
2021-03-23 09:51:53 +00:00
|
|
|
# inline_tweak = { version = "1.0.8", features = ["release_tweak"] }
|
2022-05-19 21:51:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Setup a State
|
2022-06-04 21:59:19 +00:00
|
|
|
common-state = { package = "veloren-common-state", path = "../state" }
|