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
|
|
|
|
2020-09-29 12:29:18 +00:00
|
|
|
[features]
|
|
|
|
simd = ["vek/platform_intrinsics"]
|
2021-04-06 15:47:03 +00:00
|
|
|
plugins = ["common-state/plugins"]
|
2023-09-22 02:58:55 +00:00
|
|
|
bin_bot = ["serde", "ron", "clap", "rustyline", "common-frontend", "async-channel", "voxygen-i18n-helpers", "client-i18n"]
|
2021-06-27 00:10:58 +00:00
|
|
|
tracy = ["common-base/tracy"]
|
2021-12-26 16:48:34 +00:00
|
|
|
tick_network = []
|
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" }
|
2021-04-06 15:47:03 +00:00
|
|
|
common-state = { package = "veloren-common-state", path = "../common/state", default-features = false }
|
2021-04-21 17:10:13 +00:00
|
|
|
common-systems = { package = "veloren-common-systems", path = "../common/systems", default-features = false }
|
2020-12-13 17:11:55 +00:00
|
|
|
common-net = { package = "veloren-common-net", path = "../common/net" }
|
2021-05-17 17:32:26 +00:00
|
|
|
network = { package = "veloren-network", path = "../network", features = ["compression","quic"], default-features = false }
|
2019-01-02 17:23:31 +00:00
|
|
|
|
2019-10-16 11:39:41 +00:00
|
|
|
byteorder = "1.3.2"
|
2023-05-10 08:33:01 +00:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
2023-08-23 04:35:36 +00:00
|
|
|
quinn = "0.10"
|
2023-05-10 08:33:01 +00:00
|
|
|
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 }
|
2023-09-13 10:23:36 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "abb1a705827984e11706d7bb97fb7a459e1e6533" } # xMAC94x/current_master_till_refactored branch
|
2020-12-12 01:12:00 +00:00
|
|
|
|
2021-04-21 17:10:13 +00:00
|
|
|
#TODO: put bot in a different crate
|
2021-03-12 00:29:35 +00:00
|
|
|
#bot only
|
2024-02-06 17:49:48 +00:00
|
|
|
async-channel = { version = "2.1", optional = true }
|
2022-09-25 20:33:12 +00:00
|
|
|
voxygen-i18n-helpers = { package = "veloren-voxygen-i18n-helpers", path = "../voxygen/i18n-helpers", optional = true }
|
2022-09-27 12:09:20 +00:00
|
|
|
client-i18n = { package = "veloren-client-i18n", path = "i18n", optional = true }
|
2023-05-10 08:33:01 +00:00
|
|
|
serde = { workspace = true, features = [ "rc" ], optional = true }
|
|
|
|
ron = { workspace = true, optional = true }
|
|
|
|
clap = { workspace = true, optional = true }
|
2024-02-06 17:49:48 +00:00
|
|
|
rustyline = { version = "13.0.0", optional = true }
|
2021-03-12 00:29:35 +00:00
|
|
|
## logging
|
2021-03-28 23:40:53 +00:00
|
|
|
common-frontend = { package = "veloren-common-frontend", path = "../common/frontend", optional = true }
|
2021-03-12 00:29:35 +00:00
|
|
|
|
2020-12-12 01:12:00 +00:00
|
|
|
[dev-dependencies]
|
2022-09-25 20:33:12 +00:00
|
|
|
voxygen-i18n-helpers = { package = "veloren-voxygen-i18n-helpers", path = "../voxygen/i18n-helpers" }
|
2022-09-27 12:09:20 +00:00
|
|
|
client-i18n = { package = "veloren-client-i18n", path = "i18n" }
|
2020-12-12 01:12:00 +00:00
|
|
|
|
|
|
|
[[example]]
|
2020-12-15 11:14:26 +00:00
|
|
|
name = "chat-cli"
|
2021-03-28 23:40:53 +00:00
|
|
|
required-features = ["bin_bot"]
|
2021-03-12 00:29:35 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "bot"
|
|
|
|
#authors = ["Avi Weinstock <aweinstock314@gmail.com>"]
|
|
|
|
required-features = ["bin_bot"]
|
2021-12-21 16:35:49 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "swarm"
|
2021-12-26 16:48:34 +00:00
|
|
|
required-features = ["bin_bot", "tick_network"]
|