2021-03-08 22:40:02 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
2022-01-26 14:46:40 +00:00
|
|
|
edition = "2021"
|
2021-03-08 22:40:02 +00:00
|
|
|
name = "veloren-common-base"
|
|
|
|
description = "minimal dependency for crates to now depend on whole common"
|
2021-06-12 08:14:07 +00:00
|
|
|
version = "0.10.0"
|
2021-03-08 22:40:02 +00:00
|
|
|
|
|
|
|
[features]
|
2023-03-07 05:55:36 +00:00
|
|
|
tracy = ["profiling", "profiling/profile-with-tracy"]
|
2021-03-08 22:40:02 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-05-10 08:33:01 +00:00
|
|
|
tracing = { workspace = true }
|
2021-03-08 22:40:02 +00:00
|
|
|
directories-next = "2.0"
|
|
|
|
|
2023-03-07 05:55:36 +00:00
|
|
|
# Profiling / Tracy
|
|
|
|
# NOTE: This must be kept in sync with the `tracy-client` version used by the
|
|
|
|
# `tracing-tracy` version in `common/frontend`.
|
|
|
|
# Using `=` here keeps `cargo update` from breaking this.
|
|
|
|
profiling = { version = "=1.0.8", default-features = false, optional = true }
|