veloren/client/Cargo.toml

63 lines
2.5 KiB
TOML
Raw Normal View History

2019-01-02 17:23:31 +00:00
[package]
name = "veloren-client"
2022-07-23 12:06:08 +00:00
version = "0.13.0"
2019-01-02 17:23:31 +00:00
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
2022-01-26 14:46:40 +00:00
edition = "2021"
2019-01-02 17:23:31 +00:00
[features]
simd = ["vek/platform_intrinsics"]
2021-04-06 15:47:03 +00:00
plugins = ["common-state/plugins"]
bin_bot = ["common-ecs", "serde", "ron", "clap", "structopt", "rustyline", "common-frontend", "async-channel"]
tracy = ["common-base/tracy"]
tick_network = []
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-base = { package = "veloren-common-base", path = "../common/base" }
2021-04-06 15:47:03 +00:00
common-state = { package = "veloren-common-state", path = "../common/state", default-features = false }
common-systems = { package = "veloren-common-systems", path = "../common/systems", default-features = false }
common-net = { package = "veloren-common-net", path = "../common/net" }
network = { package = "veloren-network", path = "../network", features = ["compression","quic"], default-features = false }
2019-01-02 17:23:31 +00:00
byteorder = "1.3.2"
2021-11-19 14:40:59 +00:00
tokio = { version = "1.14", default-features = false, features = ["rt-multi-thread"] }
quinn = "0.8"
image = { version = "0.24", default-features = false, features = ["png"] }
num = "0.4"
tracing = { version = "0.1", default-features = false }
2020-12-16 13:17:28 +00:00
rayon = "1.5"
2022-07-06 07:20:22 +00:00
specs = { version = "0.18", features = ["serde", "storage-event-control", "derive"] }
2022-04-25 06:37:24 +00:00
vek = { version = "0.15.8", features = ["serde"] }
2022-07-06 07:20:22 +00:00
hashbrown = { version = "0.12", features = ["rayon", "serde", "nightly"] }
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
#TODO: put bot in a different crate
#bot only
async-channel = { version = "1.6", optional = true }
common-ecs = { package = "veloren-common-ecs", path = "../common/ecs", optional = true }
serde = { version = "1.0", features = [ "rc", "derive" ], optional = true }
ron = { version = "0.7", default-features = false, optional = true }
clap = { version = "3.1.8", optional = true, features = ["color", "std"] }
structopt = { version = "0.3.13", optional = true }
2021-09-20 10:05:41 +00:00
rustyline = { version = "9.0.0", optional = true }
## logging
termcolor = { version = "1.1", optional = true }
2021-03-28 23:40:53 +00:00
common-frontend = { package = "veloren-common-frontend", path = "../common/frontend", optional = true }
[dev-dependencies]
[[example]]
name = "chat-cli"
2021-03-28 23:40:53 +00:00
required-features = ["bin_bot"]
[[bin]]
name = "bot"
#authors = ["Avi Weinstock <aweinstock314@gmail.com>"]
required-features = ["bin_bot"]
[[bin]]
name = "swarm"
required-features = ["bin_bot", "tick_network"]