mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
dda4931f46
* Remove tweak feature * Remove const-tweaker * Update tiny_http * Update bitvec to 0.21.0 * Downgrade euc to avoid conflict with vek 0.12.0 * Require exactly vek 0.12.0 * Update all other dependencies automatically based on these changes * Update gilrs to latest at the request of Ada Lovegirls * Update meshing benchmarks to new criterion API
34 lines
928 B
TOML
34 lines
928 B
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-common-net"
|
|
version = "0.8.0"
|
|
|
|
[features]
|
|
tracy = ["tracy-client"]
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
common = {package = "veloren-common", path = "../../common"}
|
|
|
|
sum_type = "0.2.0"
|
|
vek = { version = "=0.12.0", features = ["serde"] }
|
|
tracing = { version = "0.1", default-features = false }
|
|
|
|
# Data structures
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
|
|
|
# Auth
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "bffb5181a35c19ddfd33ee0b4aedba741aafb68d" }
|
|
|
|
# ECS
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "d4435bdf496cf322c74886ca09dd8795984919b4" }
|
|
|
|
# Serde
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
|
|
|
# Tracy
|
|
tracy-client = { version = "0.10.0", optional = true }
|