mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
633 B
TOML
20 lines
633 B
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
|
|
edition = "2021"
|
|
name = "veloren-common-base"
|
|
description = "minimal dependency for crates to now depend on whole common"
|
|
version = "0.10.0"
|
|
|
|
[features]
|
|
tracy = ["profiling", "profiling/profile-with-tracy"]
|
|
|
|
[dependencies]
|
|
tracing = { workspace = true }
|
|
directories-next = "2.0"
|
|
|
|
# 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 }
|