veloren/common/state/Cargo.toml

43 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 = ["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" }
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 }
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 }
wasmer = { version = "4.0.0-beta.3", optional = true, default-features = false, features = ["sys", "wat", "cranelift"] }
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"
wasmer-wasix-types = { version = "0.8.0", default-features = false }
2021-04-06 15:47:03 +00:00
# Tweak running code
#inline_tweak = { version = "1.0.8", features = ["release_tweak"] }