mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
589254e4ab
- Completely removed both `log` and `pretty_env_logger` and replaced with `tracing` and `tracing_subscriber` where necessary. - Converted all `log::info!(...)` et al. statements to just use the shorthand macro i.e. `info!`. This was mostly to make renaming easier.
17 lines
565 B
TOML
17 lines
565 B
TOML
[package]
|
|
name = "veloren-server-cli"
|
|
version = "0.6.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
worldgen = ["server/worldgen"]
|
|
default = ["worldgen"]
|
|
|
|
[dependencies]
|
|
server = { package = "veloren-server", path = "../server", default-features = false }
|
|
common = { package = "veloren-common", path = "../common" }
|
|
|
|
tracing = { version = "0.1", default-features = false , features = ["attributes"] }
|
|
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["fmt", "chrono", "ansi", "smallvec"] }
|