mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
33 lines
1009 B
TOML
33 lines
1009 B
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2021"
|
|
name = "veloren-common-net"
|
|
version = "0.10.0"
|
|
|
|
[features]
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
common = {package = "veloren-common", path = "../../common"}
|
|
#inline_tweak = "1.0.2"
|
|
|
|
bincode = "1.3.3"
|
|
flate2 = "1.0.20"
|
|
image = { version = "0.23.12", default-features = false, features = ["png", "jpeg"] }
|
|
num-traits = "0.2"
|
|
sum_type = "0.2.0"
|
|
vek = { version = "=0.14.1", features = ["serde"] }
|
|
tracing = { version = "0.1", default-features = false }
|
|
|
|
# Data structures
|
|
hashbrown = { version = "0.11", features = ["rayon", "serde", "nightly"] }
|
|
|
|
# ECS
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "f985bec5d456f7b0dd8aae99848f9473c2cd9d46" }
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "8be2abcddf8f524cb5876e8dd20a7e47cfaf7573" }
|
|
|
|
# Serde
|
|
serde = { version = "1.0.110", features = ["derive"] }
|