2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
|
|
|
name = "veloren-client"
|
2021-03-20 12:07:09 +00:00
|
|
|
version = "0.9.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]
|
2021-03-13 16:21:02 +00:00
|
|
|
tracy = ["common/tracy", "common-base/tracy", "common-sys/tracy", "common-net/tracy"]
|
2020-09-29 12:29:18 +00:00
|
|
|
simd = ["vek/platform_intrinsics"]
|
2020-12-15 11:14:26 +00:00
|
|
|
plugins = ["common-sys/plugins"]
|
2021-03-12 10:08:24 +00:00
|
|
|
bin_bot = ["common-ecs", "serde", "ron", "clap", "rustyline", "termcolor", "tracing-subscriber", "async-channel"]
|
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"] }
|
2021-03-08 22:40:02 +00:00
|
|
|
common-base = { package = "veloren-common-base", path = "../common/base" }
|
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" }
|
2021-01-22 16:09:20 +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"
|
2020-12-16 09:42:36 +00:00
|
|
|
futures-util = "0.3.7"
|
2021-02-14 17:45:12 +00:00
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
|
2020-12-16 09:42:36 +00:00
|
|
|
image = { version = "0.23.12", default-features = false, features = ["png"] }
|
2021-03-09 19:12:57 +00:00
|
|
|
num = "0.4"
|
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"
|
2021-03-10 12:22:17 +00:00
|
|
|
specs = { git = "https://github.com/amethyst/specs.git", rev = "5a9b71035007be0e3574f35184acac1cd4530496" }
|
2021-03-03 20:44:30 +00:00
|
|
|
vek = { version = "=0.14.1", features = ["serde"] }
|
2020-12-16 13:17:28 +00:00
|
|
|
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
2021-03-11 15:57:50 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
|
2020-12-12 01:12:00 +00:00
|
|
|
|
2021-03-12 00:29:35 +00:00
|
|
|
#bot only
|
2021-03-12 10:08:24 +00:00
|
|
|
async-channel = { version = "1.6", optional = true }
|
2021-03-12 00:29:35 +00:00
|
|
|
common-ecs = { package = "veloren-common-ecs", path = "../common/ecs", optional = true }
|
|
|
|
serde = { version = "1.0", features = [ "rc", "derive" ], optional = true }
|
|
|
|
ron = { version = "0.6", default-features = false, optional = true }
|
|
|
|
clap = { version = "2.33", optional = true }
|
|
|
|
rustyline = { version = "8.0.0", optional = true }
|
|
|
|
## logging
|
|
|
|
termcolor = { version = "1.1", optional = true }
|
|
|
|
tracing-subscriber = {version = "0.2.3", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec", "tracing-log"], optional = true }
|
|
|
|
|
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"
|
2021-03-12 00:29:35 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "bot"
|
|
|
|
#authors = ["Avi Weinstock <aweinstock314@gmail.com>"]
|
|
|
|
required-features = ["bin_bot"]
|