mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
e29ede7c97
cannot update the following dependencies: - vek: Sharps SIMD isnt upstream - tracing-subscriber: MakeWriter was adjusted and i was to lazy to fiddle with lifetimes, - refinery, rustsql: we have a custom refinery version which is incompatible with newer rustsql - equi + egui_winit + egui_wgpu_backend: i tried it in this commit but it turned out that they dependo n wgpu which we cant update - wgpu: cant update due new version doesnt support DX11 Got quinn updated which now require some dependencies to be explicit.
23 lines
736 B
TOML
23 lines
736 B
TOML
[package]
|
|
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>", "Imbris <imbrisf@gmail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-common-frontend"
|
|
description = "common stuff that is used by server-cli and voxygen directly"
|
|
version = "0.10.0"
|
|
|
|
[features]
|
|
tracy = ["common-base/tracy", "tracing-tracy"]
|
|
|
|
[dependencies]
|
|
common-base = { package = "veloren-common-base", path = "../base" }
|
|
|
|
# Logging
|
|
termcolor = "1.1"
|
|
tracing = { version = "0.1", default-features = false }
|
|
tracing-appender = "0.1.2"
|
|
tracing-log = "0.1.1"
|
|
tracing-subscriber = { version = "0.2.25", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec", "tracing-log"]}
|
|
|
|
# Tracy
|
|
tracing-tracy = { version = "0.8.0", optional = true }
|