veloren/server/Cargo.toml

53 lines
2.0 KiB
TOML
Raw Normal View History

2019-01-02 17:23:31 +00:00
[package]
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"
[features]
worldgen = []
simd = ["vek/platform_intrinsics"]
plugins = ["common-sys/plugins"]
default = ["worldgen", "simd"]
2019-01-02 17:23:31 +00:00
[dependencies]
common = { package = "veloren-common", path = "../common" }
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" }
network = { package = "veloren_network", path = "../network", features = ["metrics", "compression"], default-features = false }
2019-01-02 17:23:31 +00:00
2020-12-16 13:17:28 +00:00
specs = { git = "https://github.com/amethyst/specs.git", features = ["shred-derive"], rev = "d4435bdf496cf322c74886ca09dd8795984919b4" }
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "77048eefa5df750f44bbd1b9a13402a9f7a6cfc8" }
tracing = "0.1"
vek = { version = "0.12.0", features = ["serde"] }
2019-07-29 13:42:26 +00:00
uvth = "3.1.1"
2020-12-16 09:42:36 +00:00
futures-util = "0.3.7"
futures-executor = "0.3"
2020-11-06 13:14:54 +00:00
futures-timer = "3.0"
futures-channel = "0.3"
itertools = "0.9"
lazy_static = "1.4.0"
2020-10-24 20:03:53 +00:00
scan_fmt = { git = "https://github.com/Imberflur/scan_fmt" }
ron = { version = "0.6", default-features = false }
serde = { version = "1.0.110", features = ["derive"] }
serde_json = "1.0.50"
rand = { version = "0.7", features = ["small_rng"] }
chrono = "0.4.9"
2020-12-16 13:17:28 +00:00
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
crossbeam-channel = "0.5"
prometheus = { version = "0.11", default-features = false}
tiny_http = "0.7.0"
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs" }
2020-12-28 15:17:43 +00:00
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "bffb5181a35c19ddfd33ee0b4aedba741aafb68d" }
libsqlite3-sys = { version = "0.18", 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"
slab = "0.4"
# Plugins
plugin-api = { package = "veloren-plugin-api", path = "../plugin/api"}