2021-03-08 22:40:02 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
name = "veloren-common-ecs"
|
2021-03-20 12:07:09 +00:00
|
|
|
version = "0.9.0"
|
2021-03-08 22:40:02 +00:00
|
|
|
|
|
|
|
[features]
|
2021-03-13 16:21:02 +00:00
|
|
|
tracy = ["common-base/tracy"]
|
2021-03-08 22:40:02 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
tracing = { version = "0.1", default-features = false }
|
|
|
|
common-base = { package = "veloren-common-base", path = "../base" }
|
|
|
|
|
|
|
|
# ECS
|
2021-03-10 12:22:17 +00:00
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
|
2021-03-08 22:40:02 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
#bench
|
2021-03-13 16:21:02 +00:00
|
|
|
float-cmp = "0.8.0"
|