mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
51 lines
2.0 KiB
TOML
51 lines
2.0 KiB
TOML
[package]
|
|
name = "veloren-server"
|
|
version = "0.8.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
worldgen = []
|
|
simd = ["vek/platform_intrinsics"]
|
|
plugins = ["common-sys/plugins"]
|
|
|
|
default = ["worldgen", "plugins", "simd"]
|
|
|
|
[dependencies]
|
|
common = { package = "veloren-common", path = "../common" }
|
|
common-sys = { package = "veloren-common-sys", path = "../common/sys" }
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
|
world = { package = "veloren-world", path = "../world" }
|
|
network = { package = "veloren-network", path = "../network", features = ["metrics", "compression"], default-features = false }
|
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["shred-derive"], rev = "d4435bdf496cf322c74886ca09dd8795984919b4" }
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "9fab7b396acd6454585486e50ae4bfe2069858a9" }
|
|
|
|
tracing = "0.1"
|
|
vek = { version = "0.14.1", features = ["serde"] }
|
|
futures-util = "0.3.7"
|
|
tokio = { version = "1", default-features = false, features = ["rt"] }
|
|
prometheus-hyper = "0.1.1"
|
|
itertools = "0.9"
|
|
lazy_static = "1.4.0"
|
|
scan_fmt = { git = "https://github.com/Imberflur/scan_fmt" }
|
|
ron = { version = "0.6", default-features = false }
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
|
serde_json = "1.0.50"
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
chrono = "0.4.9"
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
|
rayon = "1.5"
|
|
crossbeam-channel = "0.5"
|
|
prometheus = { version = "0.11", default-features = false}
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" }
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "bffb5181a35c19ddfd33ee0b4aedba741aafb68d" }
|
|
libsqlite3-sys = { version = "0.18", features = ["bundled"] }
|
|
diesel = { version = "1.4.3", features = ["sqlite"] }
|
|
diesel_migrations = "1.4.0"
|
|
dotenv = "0.15.0"
|
|
slab = "0.4"
|
|
|
|
# Plugins
|
|
plugin-api = { package = "veloren-plugin-api", path = "../plugin/api"}
|