veloren/common/state/Cargo.toml

46 lines
1.4 KiB
TOML
Raw Normal View History

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 = ["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" }
common-assets = { package = "veloren-common-assets", path = "../assets", optional = true}
2021-04-06 15:47:03 +00:00
rayon = { workspace = true }
num_cpus = "1.0"
tracing = { workspace = true }
vek = { workspace = true }
2021-04-06 15:47:03 +00:00
# Data structures
hashbrown = { workspace = true }
2021-04-06 15:47:03 +00:00
# ECS
specs = { workspace = true, features = ["serde", "storage-event-control", "derive"] }
2021-04-06 15:47:03 +00:00
# Plugins
scopeguard = "1.1.0"
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 }
bincode = { workspace = true, optional = true }
2023-01-15 18:28:38 +00:00
timer-queue = "0.1.0"
wasmtime = { version = "17.0.0", optional = true , features = ["component-model", "async"] }
wasmtime-wasi = { version = "17.0.0", optional = true }
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"] }