mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
34 lines
999 B
TOML
34 lines
999 B
TOML
[package]
|
|
name = "veloren-server-cli"
|
|
version = "0.7.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
worldgen = ["server/worldgen"]
|
|
default = ["worldgen"]
|
|
tracy = ["common/tracy", "tracing-tracy"]
|
|
|
|
[dependencies]
|
|
server = { package = "veloren-server", path = "../server", default-features = false }
|
|
common = { package = "veloren-common", path = "../common" }
|
|
|
|
ansi-parser = "0.6"
|
|
clap = "2.33"
|
|
crossterm = "0.17"
|
|
lazy_static = "1"
|
|
signal-hook = "0.1.16"
|
|
tracing = { version = "0.1", default-features = false }
|
|
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec"] }
|
|
ron = {version = "0.6", default-features = false}
|
|
serde = {version = "1.0", features = [ "rc", "derive" ]}
|
|
|
|
# Tracy
|
|
tracing-tracy = { version = "0.3.0", optional = true }
|
|
|
|
[dependencies.tui]
|
|
git = "https://github.com/fdehau/tui-rs.git"
|
|
branch="paragraph-scroll"
|
|
default-features = false
|
|
features = ['crossterm']
|