veloren/common/base/Cargo.toml

20 lines
633 B
TOML
Raw Normal View History

[package]
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
2022-01-26 14:46:40 +00:00
edition = "2021"
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"
[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 }