mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
1de94a9979
* Added "migration of migrations" to transfer the data from the __diesel_schema_migrations table to the refinery_schema_history table * Removed all down migrations as refinery does not support down migrations * Changed all diesel up migrations to refinery naming format * Added --sql-log-mode parameter to veloren-server-cli to allow SQL tracing and profiling * Added /disconnect_all_players admin command * Added disconnectall CLI command * Fixes for several potential persistence-related race conditions
56 lines
2.4 KiB
TOML
56 lines
2.4 KiB
TOML
[package]
|
|
name = "veloren-server"
|
|
version = "0.9.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
worldgen = []
|
|
tracy = ["common/tracy", "common-base/tracy", "common-ecs/tracy", "common-sys/tracy", "common-net/tracy", "world/tracy"]
|
|
simd = ["vek/platform_intrinsics"]
|
|
plugins = ["common-sys/plugins"]
|
|
|
|
default = ["worldgen", "plugins", "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-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 = "5a9b71035007be0e3574f35184acac1cd4530496" }
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "b65fb220e94f5d3c9bc30074a076149763795556" }
|
|
|
|
num_cpus = "1.0"
|
|
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.2"
|
|
itertools = "0.10"
|
|
lazy_static = "1.4.0"
|
|
scan_fmt = "0.2.6"
|
|
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.12", default-features = false}
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" }
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
|
|
dotenv = "0.15.0"
|
|
slab = "0.4"
|
|
rand_distr = "0.4.0"
|
|
|
|
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"}
|