mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
67 lines
2.8 KiB
TOML
67 lines
2.8 KiB
TOML
[package]
|
|
name = "veloren-server"
|
|
version = "0.12.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
worldgen = []
|
|
simd = ["vek/platform_intrinsics"]
|
|
plugins = ["common-state/plugins"]
|
|
persistent_world = []
|
|
hot-reloading = ["common/hot-reloading"]
|
|
|
|
default = ["worldgen", "plugins", "persistent_world", "simd"]
|
|
|
|
[dependencies]
|
|
common = { package = "veloren-common", path = "../common" }
|
|
common-base = { package = "veloren-common-base", path = "../common/base" }
|
|
common-ecs = { package = "veloren-common-ecs", path = "../common/ecs" }
|
|
common-state = { package = "veloren-common-state", path = "../common/state" }
|
|
common-systems = { package = "veloren-common-systems", path = "../common/systems" }
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
|
world = { package = "veloren-world", path = "../world" }
|
|
network = { package = "veloren-network", path = "../network", features = ["metrics", "compression", "quic"], default-features = false }
|
|
|
|
#inline_tweak = "1.0.8"
|
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["shred-derive"], rev = "f985bec5d456f7b0dd8aae99848f9473c2cd9d46" }
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "8be2abcddf8f524cb5876e8dd20a7e47cfaf7573" }
|
|
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
bincode = "1.3.2"
|
|
num_cpus = "1.0"
|
|
tracing = "0.1"
|
|
vek = { version = "0.15.8", features = ["serde"] }
|
|
futures-util = "0.3.7"
|
|
tokio = { version = "1.14", default-features = false, features = ["rt"] }
|
|
prometheus-hyper = "0.1.4"
|
|
quinn = "0.8"
|
|
rustls = { version = "0.20", default-features = false }
|
|
rustls-pemfile = { version = "0.3", default-features = false }
|
|
atomicwrites = "0.3.0"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
chrono-tz = { version = "0.6", features = ["serde"] }
|
|
humantime = "2.1.0"
|
|
itertools = "0.10"
|
|
lazy_static = "1.4.0"
|
|
ron = { version = "0.7", default-features = false }
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
|
serde_json = "1.0.50"
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
hashbrown = { version = "0.11", features = ["rayon", "serde", "nightly"] }
|
|
rayon = "1.5"
|
|
crossbeam-channel = "0.5"
|
|
prometheus = { version = "0.13", default-features = false}
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" }
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
|
|
slab = "0.4"
|
|
rand_distr = "0.4.0"
|
|
enumset = "1.0.8"
|
|
|
|
rusqlite = { version = "0.24.2", features = ["array", "vtab", "bundled", "trace"] }
|
|
refinery = { git = "https://gitlab.com/veloren/refinery.git", rev = "8ecf4b4772d791e6c8c0a3f9b66a7530fad1af3e", features = ["rusqlite"] }
|
|
|
|
# Plugins
|
|
plugin-api = { package = "veloren-plugin-api", path = "../plugin/api"}
|