mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-common-net"
|
|
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"
|
|
|
|
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 }
|
|
#inline_tweak = "1.0.2"
|
|
|
|
# Data structures
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
|
|
|
# ECS
|
|
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"] }
|