mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
34 lines
949 B
TOML
34 lines
949 B
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 = { workspace = true }
|
|
rayon = { workspace = true }
|
|
tracing = { workspace = true }
|
|
vek = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
itertools = { workspace = true }
|
|
|
|
# ECS
|
|
specs = { workspace = true, features = ["serde", "storage-event-control", "derive"] }
|
|
|
|
# Tweak running code
|
|
# inline_tweak = { workspace = true, features = ["release_tweak"] }
|
|
|
|
[dev-dependencies]
|
|
# Setup a State
|
|
common-state = { package = "veloren-common-state", path = "../state" }
|