2019-01-02 17:23:31 +00:00
|
|
|
[package]
|
|
|
|
name = "veloren-client"
|
2024-03-29 23:10:54 +00:00
|
|
|
version = "0.16.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"]
|
2024-05-19 22:33:31 +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]
|
2024-05-19 22:33:31 +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" }
|
2024-05-19 22:33:31 +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"] }
|
2024-05-19 22:33:31 +00:00
|
|
|
quinn = { workspace = true, features = ["rustls"] }
|
2024-05-28 12:46:03 +00:00
|
|
|
rustls = { workspace = true }
|
2024-05-19 22:33:31 +00:00
|
|
|
hickory-resolver = { version = "0.24.0", features = [
|
|
|
|
"system-config",
|
|
|
|
"tokio-runtime",
|
|
|
|
] }
|
2023-05-10 08:33:01 +00:00
|
|
|
image = { workspace = true }
|
|
|
|
num = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
2024-05-19 22:33:31 +00:00
|
|
|
specs = { workspace = true, features = [
|
|
|
|
"serde",
|
|
|
|
"storage-event-control",
|
|
|
|
"derive",
|
|
|
|
] }
|
2023-05-10 08:33:01 +00:00
|
|
|
vek = { workspace = true }
|
|
|
|
hashbrown = { workspace = true }
|
2024-06-04 07:42:10 +00:00
|
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "ae0e16783a9f9041951296885f082308e155db79" } # 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 }
|
2024-05-19 22:33:31 +00:00
|
|
|
serde = { workspace = true, features = ["rc"], optional = true }
|
2023-05-10 08:33:01 +00:00
|
|
|
ron = { workspace = true, optional = true }
|
|
|
|
clap = { workspace = true, optional = true }
|
2024-03-20 08:24:03 +00:00
|
|
|
rustyline = { version = "14.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]]
|
2024-07-23 11:59:15 +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"]
|