veloren/client/Cargo.toml

66 lines
2.6 KiB
TOML
Raw Normal View History

2019-01-02 17:23:31 +00:00
[package]
name = "veloren-client"
2023-06-26 22:28:05 +00:00
version = "0.15.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", "rustyline", "common-frontend", "async-channel", "voxygen-i18n-helpers", "client-i18n"]
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"
tokio = { workspace = true, features = ["rt-multi-thread"] }
quinn = "0.10"
image = { workspace = true }
num = { workspace = true }
tracing = { workspace = true }
rayon = { workspace = true }
specs = { workspace = true, features = ["serde", "storage-event-control", "derive"] }
vek = { workspace = true }
hashbrown = { workspace = true }
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "42dddd666f28e1a94cdf4b542fcd61f67658e261" } # xMAC94x/current_master_till_refactored branch
#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 }
2022-09-25 20:33:12 +00:00
voxygen-i18n-helpers = { package = "veloren-voxygen-i18n-helpers", path = "../voxygen/i18n-helpers", optional = true }
client-i18n = { package = "veloren-client-i18n", path = "i18n", optional = true }
serde = { workspace = true, features = [ "rc" ], optional = true }
ron = { workspace = true, optional = true }
clap = { workspace = true, optional = true }
2023-05-04 20:56:40 +00:00
rustyline = { version = "11.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]
2022-09-25 20:33:12 +00:00
voxygen-i18n-helpers = { package = "veloren-voxygen-i18n-helpers", path = "../voxygen/i18n-helpers" }
client-i18n = { package = "veloren-client-i18n", path = "i18n" }
[[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"]