veloren/client/Cargo.toml

39 lines
1.4 KiB
TOML
Raw Normal View History

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"
[features]
simd = ["vek/platform_intrinsics"]
plugins = ["common-sys/plugins"]
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"] }
common-sys = { package = "veloren-common-sys", path = "../common/sys", default-features = false }
common-net = { package = "veloren-common-net", path = "../common/net" }
network = { package = "veloren_network", path = "../network", features = ["compression"], default-features = false }
2019-01-02 17:23:31 +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"
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"
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" }
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" }
[dev-dependencies]
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["fmt", "chrono", "ansi", "smallvec"] }
[[example]]
name = "chat-cli"