2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
|
|
|
name = "veloren-client"
|
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-09-29 12:29:18 +00:00
|
|
|
[features]
|
|
|
|
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 = ["simd"]
|
|
|
|
|
2019-01-02 17:23:31 +00:00
|
|
|
[dependencies]
|
2020-01-27 22:41:30 +00:00
|
|
|
common = { package = "veloren-common", path = "../common", features = ["no-assets"] }
|
2020-12-13 17:11:55 +00:00
|
|
|
common-sys = { package = "veloren-common-sys", path = "../common/sys", default-features = false }
|
|
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
2020-08-25 13:32:42 +00:00
|
|
|
network = { package = "veloren_network", path = "../network", features = ["compression"], default-features = false }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2019-10-16 11:39:41 +00:00
|
|
|
byteorder = "1.3.2"
|
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"
|
2020-07-01 07:30:38 +00:00
|
|
|
futures-executor = "0.3"
|
2020-11-06 13:14:54 +00:00
|
|
|
futures-timer = "3.0"
|
2020-12-16 09:42:36 +00:00
|
|
|
image = { version = "0.23.12", default-features = false, features = ["png"] }
|
2020-12-16 00:07:39 +00:00
|
|
|
num = "0.3.1"
|
2019-07-12 18:13:35 +00:00
|
|
|
num_cpus = "1.10.1"
|
2020-06-21 21:47:49 +00:00
|
|
|
tracing = { version = "0.1", default-features = false }
|
2020-12-16 13:17:28 +00:00
|
|
|
rayon = "1.5"
|
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", rev = "d4435bdf496cf322c74886ca09dd8795984919b4" }
|
2020-09-29 12:29:18 +00:00
|
|
|
vek = { version = "0.12.0", features = ["serde"] }
|
2020-12-16 13:17:28 +00:00
|
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
2020-12-28 15:17:43 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "bffb5181a35c19ddfd33ee0b4aedba741aafb68d" }
|
2020-12-12 01:12:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["fmt", "chrono", "ansi", "smallvec"] }
|
|
|
|
|
|
|
|
[[example]]
|
2020-12-15 11:14:26 +00:00
|
|
|
name = "chat-cli"
|