2019-01-30 12:11:34 +00:00
|
|
|
[package]
|
|
|
|
name = "veloren-server-cli"
|
2023-06-26 22:28:05 +00:00
|
|
|
version = "0.15.0"
|
2019-01-30 12:11:34 +00:00
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
2022-01-26 14:46:40 +00:00
|
|
|
edition = "2021"
|
2019-01-30 12:11:34 +00:00
|
|
|
|
2021-04-16 15:09:51 +00:00
|
|
|
[package.metadata.nix]
|
|
|
|
build = true
|
|
|
|
app = true
|
|
|
|
longDescription = """
|
|
|
|
Veloren is a multiplayer voxel RPG written in Rust.
|
|
|
|
It is inspired by games such as Cube World, Legend of Zelda: Breath of the Wild, Dwarf Fortress and Minecraft.
|
|
|
|
|
|
|
|
This package includes the official server CLI.
|
|
|
|
"""
|
|
|
|
|
2020-01-22 03:12:17 +00:00
|
|
|
[features]
|
|
|
|
worldgen = ["server/worldgen"]
|
2021-08-12 09:48:00 +00:00
|
|
|
persistent_world = ["server/persistent_world"]
|
2021-07-15 08:56:32 +00:00
|
|
|
# needed to stay compatible with voxygens format
|
|
|
|
default-publish = ["default"]
|
2021-08-12 09:48:00 +00:00
|
|
|
default = ["worldgen", "persistent_world"]
|
2021-06-18 07:26:35 +00:00
|
|
|
tracy = ["common-frontend/tracy"]
|
2020-12-15 11:14:26 +00:00
|
|
|
plugins = ["server/plugins"]
|
2021-08-29 12:57:36 +00:00
|
|
|
hot-reloading = ["server/hot-reloading"]
|
2023-02-24 00:53:45 +00:00
|
|
|
hot-agent = ["server/hot-agent", "agent"]
|
|
|
|
hot-site = ["server/hot-site", "world"]
|
2020-01-22 03:12:17 +00:00
|
|
|
|
2019-01-30 12:11:34 +00:00
|
|
|
[dependencies]
|
2021-06-26 20:06:20 +00:00
|
|
|
server = { package = "veloren-server", path = "../server", default-features = false, features = ["simd"] }
|
2023-02-24 00:53:45 +00:00
|
|
|
agent = { package = "veloren-server-agent", path = "../server/agent", optional = true }
|
2019-01-30 12:11:34 +00:00
|
|
|
common = { package = "veloren-common", path = "../common" }
|
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-net = { package = "veloren-common-net", path = "../common/net" }
|
2021-03-28 23:40:53 +00:00
|
|
|
common-frontend = { package = "veloren-common-frontend", path = "../common/frontend" }
|
2023-02-24 00:53:45 +00:00
|
|
|
world = { package = "veloren-world", path = "../world", optional = true }
|
2019-01-30 12:11:34 +00:00
|
|
|
|
2023-05-10 08:33:01 +00:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
2021-05-04 17:42:45 +00:00
|
|
|
num_cpus = "1.0"
|
2023-04-05 06:38:39 +00:00
|
|
|
cansi = "2.2.1"
|
2023-05-10 08:33:01 +00:00
|
|
|
clap = { workspace = true }
|
2023-05-04 20:56:40 +00:00
|
|
|
crossterm = "0.26"
|
2023-05-10 08:33:01 +00:00
|
|
|
lazy_static = { workspace = true }
|
2021-03-09 19:12:57 +00:00
|
|
|
signal-hook = "0.3.6"
|
2021-05-11 11:13:22 +00:00
|
|
|
shell-words = "1.0.0"
|
2023-05-10 08:33:01 +00:00
|
|
|
tracing = { workspace = true }
|
|
|
|
ron = { workspace = true }
|
|
|
|
serde = { workspace = true, features = [ "rc", "derive" ]}
|
2020-08-29 04:33:20 +00:00
|
|
|
|
2023-10-15 18:17:45 +00:00
|
|
|
#HTTP
|
|
|
|
axum = { version = "0.6.20" }
|
|
|
|
hyper = "0.14.26"
|
|
|
|
prometheus = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
2022-07-09 21:54:01 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-07-04 07:15:18 +00:00
|
|
|
mimalloc = "0.1.29"
|
|
|
|
|
2020-09-01 14:33:41 +00:00
|
|
|
[dependencies.tui]
|
|
|
|
git = "https://github.com/fdehau/tui-rs.git"
|
|
|
|
branch="paragraph-scroll"
|
|
|
|
default-features = false
|
2020-08-29 04:33:20 +00:00
|
|
|
features = ['crossterm']
|