2021-04-06 15:47:03 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
2022-01-26 14:46:40 +00:00
|
|
|
edition = "2021"
|
2021-04-06 15:47:03 +00:00
|
|
|
name = "veloren-common-state"
|
2021-06-12 08:14:07 +00:00
|
|
|
version = "0.10.0"
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
plugins = ["toml", "tar", "wasmer", "bincode", "plugin-api", "serde"]
|
|
|
|
|
|
|
|
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" }
|
|
|
|
|
2023-05-10 08:33:01 +00:00
|
|
|
rayon = { workspace = true }
|
2021-05-04 17:42:45 +00:00
|
|
|
num_cpus = "1.0"
|
2023-05-10 08:33:01 +00:00
|
|
|
tracing = { workspace = true }
|
|
|
|
vek = { workspace = true }
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
# Data structures
|
2023-05-10 08:33:01 +00:00
|
|
|
hashbrown = { workspace = true }
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
# ECS
|
2023-05-10 08:33:01 +00:00
|
|
|
specs = { workspace = true, features = ["serde", "storage-event-control", "derive"] }
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
# Plugins
|
|
|
|
scopeguard = "1.1.0"
|
2023-05-10 08:33:01 +00:00
|
|
|
serde = { workspace = true, optional = true }
|
2023-05-04 08:44:07 +00:00
|
|
|
toml = { version = "0.7", optional = true }
|
2021-09-20 10:05:41 +00:00
|
|
|
tar = { version = "0.4.37", optional = true }
|
2021-07-10 13:02:20 +00:00
|
|
|
wasmer = { version = "2.0.0", optional = true, default-features = false, features = ["wat", "default-cranelift", "default-universal"] }
|
2023-05-10 08:33:01 +00:00
|
|
|
bincode = { workspace = true, optional = true }
|
2021-04-06 15:47:03 +00:00
|
|
|
plugin-api = { package = "veloren-plugin-api", path = "../../plugin/api", optional = true }
|
2023-01-15 18:28:38 +00:00
|
|
|
timer-queue = "0.1.0"
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
# Tweak running code
|
|
|
|
#inline_tweak = { version = "1.0.8", features = ["release_tweak"] }
|