veloren/common/net/Cargo.toml

30 lines
891 B
TOML
Raw Normal View History

[package]
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018"
name = "veloren-common-net"
2021-03-20 12:07:09 +00:00
version = "0.9.0"
[features]
tracy = ["common/tracy"]
simd = ["vek/platform_intrinsics"]
default = ["simd"]
[dependencies]
common = {package = "veloren-common", path = "../../common"}
#inline_tweak = "1.0.2"
sum_type = "0.2.0"
vek = { version = "=0.14.1", features = ["serde"] }
tracing = { version = "0.1", default-features = false }
# Data structures
2020-12-16 13:17:28 +00:00
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
# ECS
2021-03-10 12:22:17 +00:00
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "b65fb220e94f5d3c9bc30074a076149763795556" }
# Serde
serde = { version = "1.0.110", features = ["derive"] }