2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
2019-01-12 15:57:19 +00:00
|
|
|
name = "veloren-server"
|
2020-05-15 22:50:40 +00:00
|
|
|
version = "0.6.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-01-24 21:32:26 +00:00
|
|
|
default = ["worldgen"]
|
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" }
|
2019-01-15 15:13:11 +00:00
|
|
|
world = { package = "veloren-world", path = "../world" }
|
2020-07-01 07:30:38 +00:00
|
|
|
network = { package = "veloren_network", path = "../network", default-features = false }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2020-07-06 05:56:02 +00:00
|
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", branch = "specs-16" }
|
2019-10-06 17:35:47 +00:00
|
|
|
|
2020-06-25 13:56:21 +00:00
|
|
|
tracing = "0.1"
|
2020-07-06 05:56:02 +00:00
|
|
|
specs = { version = "0.16.1", features = ["shred-derive"] }
|
2020-06-01 00:13:35 +00:00
|
|
|
vek = "0.11.0"
|
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"
|
|
|
|
futures-timer = "3.0"
|
2019-11-05 11:14:39 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
scan_fmt = "0.2.4"
|
2020-06-01 00:13:35 +00:00
|
|
|
ron = { version = "0.6", default-features = false }
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2020-06-01 21:34:52 +00:00
|
|
|
serde_json = "1.0"
|
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"] }
|
2019-11-16 16:55:50 +00:00
|
|
|
crossbeam = "=0.7.2"
|
2020-06-01 00:13:35 +00:00
|
|
|
prometheus = { version = "0.7", default-features = false}
|
2019-09-07 13:10:57 +00:00
|
|
|
prometheus-static-metric = "0.2"
|
2020-06-01 00:13:35 +00:00
|
|
|
tiny_http = "0.7.0"
|
|
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs" }
|
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "223a4097f7ebc8d451936dccb5e6517194bbf086" }
|
2020-05-09 15:41:25 +00:00
|
|
|
libsqlite3-sys = { version = "0.9.1", features = ["bundled"] }
|
|
|
|
diesel = { version = "1.4.3", features = ["sqlite"] }
|
|
|
|
diesel_migrations = "1.4.0"
|
2020-05-12 23:08:33 +00:00
|
|
|
dotenv = "0.15.0"
|