mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2021"
|
|
name = "veloren-common-systems"
|
|
version = "0.10.0"
|
|
|
|
[features]
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
common = { package = "veloren-common", path = ".." }
|
|
common-net = { package = "veloren-common-net", path = "../net" }
|
|
common-ecs = { package = "veloren-common-ecs", path = "../ecs" }
|
|
common-base = { package = "veloren-common-base", path = "../base" }
|
|
|
|
rand = "0.8"
|
|
rayon = "1.5"
|
|
tracing = { version = "0.1", default-features = false }
|
|
vek = { version = "0.15.8", features = ["serde"] }
|
|
ordered-float = { version = "2.0.1", default-features = false }
|
|
|
|
# Data structures
|
|
hashbrown = { version = "0.11", features = ["rayon", "serde", "nightly"] }
|
|
indexmap = "1.3.0"
|
|
slab = "0.4.2"
|
|
|
|
# ECS
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control", "derive"], rev = "f985bec5d456f7b0dd8aae99848f9473c2cd9d46" }
|
|
|
|
# Tweak running code
|
|
# inline_tweak = { version = "1.0.8", features = ["release_tweak"] }
|
|
|
|
[dev-dependencies]
|
|
# Setup a State
|
|
common-state = { package = "veloren-common-state", path = "../state" }
|