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"]
|
2024-02-12 20:45:04 +00:00
|
|
|
plugins = ["common-assets/plugins", "toml", "wasmtime", "wasmtime-wasi", "tar", "bincode", "serde"]
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
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" }
|
2024-01-05 19:36:09 +00:00
|
|
|
common-assets = { package = "veloren-common-assets", path = "../assets", optional = true}
|
2021-04-06 15:47:03 +00:00
|
|
|
|
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 }
|
2024-02-06 17:49:48 +00:00
|
|
|
toml = { version = "0.8", optional = true }
|
2021-09-20 10:05:41 +00:00
|
|
|
tar = { version = "0.4.37", optional = true }
|
2023-05-10 08:33:01 +00:00
|
|
|
bincode = { workspace = true, optional = true }
|
2023-01-15 18:28:38 +00:00
|
|
|
timer-queue = "0.1.0"
|
2024-02-10 09:35:04 +00:00
|
|
|
wasmtime = { version = "17.0.0", optional = true , features = ["component-model", "async"] }
|
2024-02-12 20:45:04 +00:00
|
|
|
wasmtime-wasi = { version = "17.0.0", optional = true }
|
2024-02-10 09:35:04 +00:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
bytes = "^1"
|
|
|
|
futures = "0.3.30"
|
2021-04-06 15:47:03 +00:00
|
|
|
|
|
|
|
# Tweak running code
|
|
|
|
#inline_tweak = { version = "1.0.8", features = ["release_tweak"] }
|