2021-03-28 23:40:53 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>", "Imbris <imbrisf@gmail.com>"]
|
2022-01-26 14:46:40 +00:00
|
|
|
edition = "2021"
|
2021-03-28 23:40:53 +00:00
|
|
|
name = "veloren-common-frontend"
|
|
|
|
description = "common stuff that is used by server-cli and voxygen directly"
|
2021-06-12 08:14:07 +00:00
|
|
|
version = "0.10.0"
|
2021-03-28 23:40:53 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
tracy = ["common-base/tracy", "tracing-tracy"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
common-base = { package = "veloren-common-base", path = "../base" }
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
termcolor = "1.1"
|
2023-05-10 08:33:01 +00:00
|
|
|
tracing = { workspace = true }
|
2021-11-26 17:41:51 +00:00
|
|
|
tracing-appender = "0.2.0"
|
2022-01-26 21:08:38 +00:00
|
|
|
tracing-subscriber = { version = "0.3.7", default-features = false, features = ["env-filter", "fmt", "time", "ansi", "smallvec", "tracing-log"]}
|
2021-03-28 23:40:53 +00:00
|
|
|
|
|
|
|
# Tracy
|
2023-03-07 05:55:36 +00:00
|
|
|
# NOTE: This must be kept in sync with the `profiling` version in `common/base`.
|
2023-09-15 02:15:08 +00:00
|
|
|
# NOTE: `=` since the minor version of tracing-tracy bumped a major version of `tracy-client`
|
|
|
|
tracing-tracy = { version = "=0.10.2", optional = true }
|