2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
2019-01-12 15:57:19 +00:00
|
|
|
name = "veloren-server"
|
2020-01-29 14:00:07 +00:00
|
|
|
version = "0.5.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" }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2019-12-02 01:26:31 +00:00
|
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git" }
|
2019-10-06 17:35:47 +00:00
|
|
|
|
2019-07-29 13:42:26 +00:00
|
|
|
log = "0.4.8"
|
2019-11-30 06:41:20 +00:00
|
|
|
specs = { version = "0.15.1", features = ["shred-derive"] }
|
2020-03-30 23:44:51 +00:00
|
|
|
vek = "0.10.0"
|
2019-07-29 13:42:26 +00:00
|
|
|
uvth = "3.1.1"
|
2019-11-05 11:14:39 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
scan_fmt = "0.2.4"
|
2019-06-29 16:41:26 +00:00
|
|
|
ron = "0.5.1"
|
2019-11-05 11:14:39 +00:00
|
|
|
serde = "1.0.102"
|
|
|
|
serde_derive = "1.0.102"
|
2020-01-22 03:12:17 +00:00
|
|
|
rand = { version = "0.7.2", features = ["small_rng"] }
|
2019-11-05 11:14:39 +00:00
|
|
|
chrono = "0.4.9"
|
2020-01-16 21:42:51 +00:00
|
|
|
hashbrown = { version = "0.6.2", features = ["rayon", "serde", "nightly"] }
|
2019-11-16 16:55:50 +00:00
|
|
|
crossbeam = "=0.7.2"
|
2019-09-06 14:21:09 +00:00
|
|
|
prometheus = "0.7"
|
2019-09-07 13:10:57 +00:00
|
|
|
prometheus-static-metric = "0.2"
|
2019-10-10 13:32:53 +00:00
|
|
|
rouille = "3.0.0"
|
2019-10-06 17:35:47 +00:00
|
|
|
portpicker = { git = "https://github.com/wusyong/portpicker-rs", branch = "fix_ipv6" }
|
2020-03-08 20:59:49 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "65571ade0d954a0e0bd995fdb314854ff146ab97" }
|
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"
|
|
|
|
dotenv = "0.15.0"
|