mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
9485b45e70
- Updated CHANGELOG - reduce dependencies - found out that we have alot of duplicate coding... alot...
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "veloren-server"
|
|
version = "0.6.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
worldgen = []
|
|
default = ["worldgen"]
|
|
|
|
[dependencies]
|
|
common = { package = "veloren-common", path = "../common" }
|
|
world = { package = "veloren-world", path = "../world" }
|
|
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git" }
|
|
|
|
tracing = { version = "0.1", default-features = false }
|
|
specs = { version = "0.15.1", features = ["shred-derive"] }
|
|
vek = "0.11.0"
|
|
uvth = "3.1.1"
|
|
lazy_static = "1.4.0"
|
|
scan_fmt = "0.2.4"
|
|
ron = { version = "0.6", default-features = false }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
rand = { version = "0.7", features = ["small_rng"] }
|
|
chrono = "0.4.9"
|
|
hashbrown = { version = "0.6", features = ["rayon", "serde", "nightly"] }
|
|
crossbeam = "=0.7.2"
|
|
prometheus = { version = "0.7", default-features = false}
|
|
prometheus-static-metric = "0.2"
|
|
tiny_http = "0.7.0"
|
|
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs" }
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "223a4097f7ebc8d451936dccb5e6517194bbf086" }
|
|
libsqlite3-sys = { version = "0.9.1", features = ["bundled"] }
|
|
diesel = { version = "1.4.3", features = ["sqlite"] }
|
|
diesel_migrations = "1.4.0"
|
|
dotenv = "0.15.0"
|