veloren/server/Cargo.toml

73 lines
2.7 KiB
TOML
Raw Normal View History

2019-01-02 17:23:31 +00:00
[package]
name = "veloren-server"
2023-06-26 22:28:05 +00:00
version = "0.15.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
[features]
worldgen = []
simd = ["vek/platform_intrinsics"]
2021-04-06 15:47:03 +00:00
plugins = ["common-state/plugins"]
persistent_world = []
2021-08-29 12:57:36 +00:00
hot-reloading = ["common/hot-reloading"]
hot-agent = ["server-agent/use-dyn-lib"]
2023-01-10 00:41:07 +00:00
hot-site = ["world/use-dyn-lib"]
default = ["worldgen", "plugins", "persistent_world", "simd"]
2019-01-02 17:23:31 +00:00
[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" }
2021-04-06 15:47:03 +00:00
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" }
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" }
network = { package = "veloren-network", path = "../network", features = ["metrics", "compression", "quic"], default-features = false }
2019-01-02 17:23:31 +00:00
server-agent = {package = "veloren-server-agent", path = "agent"}
2022-02-14 16:16:34 +00:00
#inline_tweak = "1.0.8"
specs = { workspace = true, features = ["shred-derive"] }
strum = { workspace = true }
bincode = { workspace = true }
num_cpus = "1.0"
tracing = { workspace = true }
vek = { workspace = true }
futures-util = { workspace = true }
tokio = { workspace = true }
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"
chrono = { workspace = true }
chrono-tz = { workspace = true }
2022-09-09 15:29:43 +00:00
drop_guard = { version = "0.3.0" }
humantime = "2.1.0"
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" }
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" }
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "abb1a705827984e11706d7bb97fb7a459e1e6533" } # xMAC94x/current_master_till_refactored branch
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"
rusqlite = { version = "0.28.0", features = ["array", "vtab", "bundled", "trace"] }
refinery = { version = "0.8.8", features = ["rusqlite"] }
# Plugins
plugin-api = { package = "veloren-plugin-api", path = "../plugin/api"}
schnellru = "0.2.1"