2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
2019-01-12 15:57:19 +00:00
|
|
|
name = "veloren-server"
|
2020-11-28 10:25:58 +00:00
|
|
|
version = "0.8.0"
|
2019-01-02 17:23:31 +00:00
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-01-22 03:12:17 +00:00
|
|
|
[features]
|
|
|
|
worldgen = []
|
2020-09-29 12:29:18 +00:00
|
|
|
simd = ["vek/platform_intrinsics"]
|
2020-12-15 11:14:26 +00:00
|
|
|
plugins = ["common-sys/plugins"]
|
2020-09-29 12:29:18 +00:00
|
|
|
|
|
|
|
default = ["worldgen", "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" }
|
2020-12-13 17:11:55 +00:00
|
|
|
common-sys = { package = "veloren-common-sys", path = "../common/sys" }
|
|
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
2019-01-15 15:13:11 +00:00
|
|
|
world = { package = "veloren-world", path = "../world" }
|
2020-08-25 13:32:42 +00:00
|
|
|
network = { package = "veloren_network", path = "../network", features = ["metrics", "compression"], default-features = false }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2020-07-09 17:46:30 +00:00
|
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", branch = "specs-git" }
|
2019-10-06 17:35:47 +00:00
|
|
|
|
2020-06-25 13:56:21 +00:00
|
|
|
tracing = "0.1"
|
2020-07-09 17:46:30 +00:00
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["shred-derive"], rev = "7a2e348ab2223818bad487695c66c43db88050a5" }
|
2020-09-29 12:29:18 +00:00
|
|
|
vek = { version = "0.12.0", features = ["serde"] }
|
2019-07-29 13:42:26 +00:00
|
|
|
uvth = "3.1.1"
|
2020-07-01 07:30:38 +00:00
|
|
|
futures-util = "0.3"
|
|
|
|
futures-executor = "0.3"
|
2020-11-06 13:14:54 +00:00
|
|
|
futures-timer = "3.0"
|
2020-10-11 22:14:04 +00:00
|
|
|
futures-channel = "0.3"
|
2020-09-17 23:02:14 +00:00
|
|
|
itertools = "0.9"
|
2019-11-05 11:14:39 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-10-24 20:03:53 +00:00
|
|
|
scan_fmt = { git = "https://github.com/Imberflur/scan_fmt" }
|
2020-06-01 00:13:35 +00:00
|
|
|
ron = { version = "0.6", default-features = false }
|
2020-07-06 14:23:08 +00:00
|
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
|
|
|
serde_json = "1.0.50"
|
2020-06-01 00:13:35 +00:00
|
|
|
rand = { version = "0.7", features = ["small_rng"] }
|
2019-11-05 11:14:39 +00:00
|
|
|
chrono = "0.4.9"
|
2020-07-06 07:15:06 +00:00
|
|
|
hashbrown = { version = "0.7.2", features = ["rayon", "serde", "nightly"] }
|
2020-12-15 23:51:07 +00:00
|
|
|
crossbeam-channel = "0.5"
|
|
|
|
prometheus = { version = "0.11", default-features = false}
|
2020-06-01 00:13:35 +00:00
|
|
|
tiny_http = "0.7.0"
|
|
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs" }
|
2020-07-30 23:05:01 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "b943c85e4a38f5ec60cd18c34c73097640162bfe" }
|
2020-07-06 14:23:08 +00:00
|
|
|
libsqlite3-sys = { version = "0.18", features = ["bundled"] }
|
2020-05-09 15:41:25 +00:00
|
|
|
diesel = { version = "1.4.3", features = ["sqlite"] }
|
|
|
|
diesel_migrations = "1.4.0"
|
2020-05-12 23:08:33 +00:00
|
|
|
dotenv = "0.15.0"
|
2020-11-11 23:59:09 +00:00
|
|
|
slab = "0.4"
|
2020-12-13 12:27:48 +00:00
|
|
|
|
|
|
|
# Plugins
|
|
|
|
plugin-api = { package = "veloren-plugin-api", path = "../plugin/api"}
|