veloren/common/state/Cargo.toml

41 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 = "1.5"
num_cpus = "1.0"
2021-04-06 15:47:03 +00:00
tracing = { version = "0.1", default-features = false }
2022-04-25 06:37:24 +00:00
vek = { version = "0.15.8", features = ["serde"] }
2021-04-06 15:47:03 +00:00
# Data structures
2022-07-06 07:20:22 +00:00
hashbrown = { version = "0.12", features = ["rayon", "serde", "nightly"] }
2021-04-06 15:47:03 +00:00
# ECS
2022-07-06 07:20:22 +00:00
specs = { version = "0.18", features = ["serde", "storage-event-control", "derive"] }
2021-04-06 15:47:03 +00:00
# Plugins
scopeguard = "1.1.0"
serde = { version = "1.0.110", features = ["derive"], optional = true }
toml = { version = "0.5.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"] }
2021-04-06 15:47:03 +00:00
bincode = { version = "1.3.1", optional = true }
plugin-api = { package = "veloren-plugin-api", path = "../../plugin/api", optional = true }
# Tweak running code
#inline_tweak = { version = "1.0.8", features = ["release_tweak"] }