mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
728bff610b
only `localhost` are allowed in a release build. when debug assertions are on, others are also allowed. This change undoes the changes to the settings, so compared to master, there is no effect
30 lines
863 B
TOML
30 lines
863 B
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-common-net"
|
|
version = "0.8.0"
|
|
|
|
[features]
|
|
tracy = ["common/tracy"]
|
|
simd = ["vek/platform_intrinsics"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
common = {package = "veloren-common", path = "../../common"}
|
|
|
|
sum_type = "0.2.0"
|
|
vek = { version = "=0.14.1", 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 = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
|
|
|
|
# ECS
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
|
|
|
|
# Serde
|
|
serde = { version = "1.0.110", features = ["derive"] } |