veloren/common/sys/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

[package]
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018"
name = "veloren-common-sys"
2021-03-20 12:07:09 +00:00
version = "0.9.0"
[features]
tracy = ["common/tracy"]
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" }
2021-01-26 20:23:18 +00:00
rand = "0.8"
2020-12-16 13:17:28 +00:00
rayon = "1.5"
tracing = { version = "0.1", default-features = false }
vek = { version = "=0.14.1", features = ["serde"] }
ordered-float = { version = "2.0.1", default-features = false }
2020-12-01 12:13:07 +00:00
# Data structures
2020-12-16 13:17:28 +00:00
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
2020-12-01 12:13:07 +00:00
indexmap = "1.3.0"
slab = "0.4.2"
# ECS
2021-03-10 12:22:17 +00:00
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control", "derive"], rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
# Tweak running code
# inline_tweak = { version = "1.0.8", features = ["release_tweak"] }