2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
2019-01-12 15:57:19 +00:00
|
|
|
name = "veloren-server"
|
2024-03-29 23:10:54 +00:00
|
|
|
version = "0.16.0"
|
2019-01-02 17:23:31 +00:00
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
2022-01-26 13:57:50 +00:00
|
|
|
edition = "2021"
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2020-01-22 03:12:17 +00:00
|
|
|
[features]
|
|
|
|
worldgen = []
|
2020-09-29 12:29:18 +00:00
|
|
|
simd = ["vek/platform_intrinsics"]
|
2021-04-06 15:47:03 +00:00
|
|
|
plugins = ["common-state/plugins"]
|
2021-08-12 09:48:00 +00:00
|
|
|
persistent_world = []
|
2021-08-29 12:57:36 +00:00
|
|
|
hot-reloading = ["common/hot-reloading"]
|
2022-09-16 00:29:12 +00:00
|
|
|
hot-agent = ["server-agent/use-dyn-lib"]
|
2023-01-10 00:41:07 +00:00
|
|
|
hot-site = ["world/use-dyn-lib"]
|
2020-09-29 12:29:18 +00:00
|
|
|
|
2021-08-20 10:44:46 +00:00
|
|
|
default = ["worldgen", "plugins", "persistent_world", "simd"]
|
2020-01-22 03:12:17 +00:00
|
|
|
|
2019-01-02 17:23:31 +00:00
|
|
|
[dependencies]
|
2019-01-12 15:57:19 +00:00
|
|
|
common = { package = "veloren-common", path = "../common" }
|
2021-03-08 22:40:02 +00:00
|
|
|
common-base = { package = "veloren-common-base", path = "../common/base" }
|
2024-05-02 07:45:53 +00:00
|
|
|
veloren-query-server = { package = "veloren-query-server", path = "../common/query_server", default-features = false, features = ["server"] }
|
2021-03-08 22:40:02 +00:00
|
|
|
common-ecs = { package = "veloren-common-ecs", path = "../common/ecs" }
|
2021-04-06 15:47:03 +00:00
|
|
|
common-state = { package = "veloren-common-state", path = "../common/state" }
|
2021-04-21 17:10:13 +00:00
|
|
|
common-systems = { package = "veloren-common-systems", path = "../common/systems" }
|
2020-12-13 17:11:55 +00:00
|
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
2019-01-15 15:13:11 +00:00
|
|
|
world = { package = "veloren-world", path = "../world" }
|
2023-03-31 23:20:14 +00:00
|
|
|
rtsim = { package = "veloren-rtsim", path = "../rtsim" }
|
2021-05-17 17:32:26 +00:00
|
|
|
network = { package = "veloren-network", path = "../network", features = ["metrics", "compression", "quic"], default-features = false }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2022-09-16 00:29:12 +00:00
|
|
|
server-agent = {package = "veloren-server-agent", path = "agent"}
|
|
|
|
|
2022-02-14 16:16:34 +00:00
|
|
|
#inline_tweak = "1.0.8"
|
2021-05-09 18:28:01 +00:00
|
|
|
|
2023-05-10 08:33:01 +00:00
|
|
|
specs = { workspace = true, features = ["shred-derive"] }
|
2019-10-06 17:35:47 +00:00
|
|
|
|
2023-05-10 08:33:01 +00:00
|
|
|
strum = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
2021-03-08 22:40:02 +00:00
|
|
|
num_cpus = "1.0"
|
2023-05-10 08:33:01 +00:00
|
|
|
tracing = { workspace = true }
|
|
|
|
vek = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2023-08-23 04:35:36 +00:00
|
|
|
quinn = "0.10"
|
|
|
|
rustls = { version = "0.21", default-features = false }
|
2022-07-06 07:20:22 +00:00
|
|
|
rustls-pemfile = { version = "1", default-features = false }
|
2023-05-04 20:56:40 +00:00
|
|
|
atomicwrites = "0.4"
|
2023-05-10 08:33:01 +00:00
|
|
|
chrono = { workspace = true }
|
|
|
|
chrono-tz = { workspace = true }
|
2022-09-09 15:29:43 +00:00
|
|
|
drop_guard = { version = "0.3.0" }
|
Added non-admin moderators and timed bans.
The security model has been updated to reflect this change (for example,
moderators cannot revert a ban by an administrator). Ban history is
also now recorded in the ban file, and much more information about the
ban is stored (whitelists and administrators also have extra
information).
To support the new information without losing important information,
this commit also introduces a new migration path for editable settings
(both from legacy to the new format, and between versions). Examples
of how to do this correctly, and migrate to new versions of a settings
file, are in the settings/ subdirectory.
As part of this effort, editable settings have been revamped to
guarantee atomic saves (due to the increased amount of information in
each file), some latent bugs in networking were fixed, and server-cli
has been updated to go through StructOpt for both calls through TUI
and argv, greatly simplifying parsing logic.
2021-05-08 18:22:21 +00:00
|
|
|
humantime = "2.1.0"
|
2023-05-10 08:33:01 +00:00
|
|
|
itertools = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
ron = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
|
|
hashbrown = { workspace = true }
|
2022-09-09 15:29:43 +00:00
|
|
|
parking_lot = { version = "0.12" }
|
2023-05-10 08:33:01 +00:00
|
|
|
rayon = { workspace = true }
|
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
prometheus = { workspace = true }
|
2021-02-06 06:15:25 +00:00
|
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" }
|
2023-09-13 10:23:36 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "abb1a705827984e11706d7bb97fb7a459e1e6533" } # xMAC94x/current_master_till_refactored branch
|
2023-05-10 08:33:01 +00:00
|
|
|
enum-map = { workspace = true }
|
2022-02-20 17:23:37 +00:00
|
|
|
noise = { version = "0.7", default-features = false }
|
2023-05-04 20:56:40 +00:00
|
|
|
censor = "0.3"
|
2020-12-13 12:27:48 +00:00
|
|
|
|
2024-03-20 08:24:03 +00:00
|
|
|
rusqlite = { version = "0.30.0", features = ["array", "vtab", "bundled", "trace"] }
|
|
|
|
refinery = { version = "0.8.12", features = ["rusqlite"] }
|
2021-04-13 22:05:47 +00:00
|
|
|
|
2023-05-05 16:28:50 +00:00
|
|
|
schnellru = "0.2.1"
|