2020-12-13 17:11:55 +00:00
|
|
|
[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"
|
2020-12-13 17:11:55 +00:00
|
|
|
|
|
|
|
[features]
|
2021-03-09 19:12:57 +00:00
|
|
|
tracy = ["common/tracy"]
|
2020-12-13 17:11:55 +00:00
|
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
|
|
|
|
default = ["simd"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
common = {package = "veloren-common", path = "../../common"}
|
2021-03-15 00:07:54 +00:00
|
|
|
#inline_tweak = "1.0.2"
|
2020-12-13 17:11:55 +00:00
|
|
|
|
2021-04-20 23:33:42 +00:00
|
|
|
bincode = "1.3.3"
|
|
|
|
flate2 = "1.0.20"
|
2021-04-22 05:00:57 +00:00
|
|
|
image = { version = "0.23.12", default-features = false, features = ["png", "jpeg"] }
|
2021-04-24 00:18:06 +00:00
|
|
|
num-traits = "0.2"
|
2020-12-13 17:11:55 +00:00
|
|
|
sum_type = "0.2.0"
|
2021-03-03 20:44:30 +00:00
|
|
|
vek = { version = "=0.14.1", features = ["serde"] }
|
2020-12-13 17:11:55 +00:00
|
|
|
tracing = { version = "0.1", default-features = false }
|
2021-04-24 00:18:06 +00:00
|
|
|
#inline_tweak = "1.0.2"
|
2020-12-13 17:11:55 +00:00
|
|
|
|
|
|
|
# Data structures
|
2020-12-16 13:17:28 +00:00
|
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
2020-12-13 17:11:55 +00:00
|
|
|
|
|
|
|
# ECS
|
2021-03-10 12:22:17 +00:00
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
|
2021-03-13 02:53:19 +00:00
|
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "b65fb220e94f5d3c9bc30074a076149763795556" }
|
2020-12-13 17:11:55 +00:00
|
|
|
|
|
|
|
# Serde
|
2021-03-13 02:53:19 +00:00
|
|
|
serde = { version = "1.0.110", features = ["derive"] }
|