changed runner tags

This commit is contained in:
Ben Wallis 2021-05-04 21:14:06 +01:00
parent ebcf59fb8c
commit 63b8fe1a5f
3 changed files with 15 additions and 0 deletions

12
Cargo.lock generated
View File

@ -6348,6 +6348,7 @@ dependencies = [
"veloren-i18n",
"veloren-server",
"veloren-voxygen-anim",
"veloren-voxygen-egui",
"veloren-world",
"wgpu 0.8.0 (git+https://github.com/gfx-rs/wgpu-rs.git?rev=7486bdad64bb5d17b709ecccb41e063469efff88)",
"wgpu-profiler",
@ -6377,6 +6378,17 @@ dependencies = [
"veloren-voxygen-anim",
]
[[package]]
name = "veloren-voxygen-egui"
version = "0.9.0"
dependencies = [
"find_folder",
"lazy_static",
"libloading 0.7.0",
"notify 5.0.0-pre.6",
"tracing",
]
[[package]]
name = "veloren-world"
version = "0.9.0"

View File

@ -20,6 +20,7 @@ members = [
"voxygen/anim",
"voxygen/anim/dyn",
"voxygen/i18n",
"voxygen/egui",
"world",
"network",
"network/protocol",

View File

@ -23,6 +23,7 @@ buildInputs = ["xorg.libxcb"]
[features]
hot-anim = ["anim/use-dyn-lib"]
hot-egui = ["egui/use-dyn-lib"]
singleplayer = ["server"]
simd = ["vek/platform_intrinsics"]
tracy = ["profiling", "profiling/profile-with-tracy", "common/tracy", "common-ecs/tracy", "common-frontend/tracy", "common-net/tracy", "common-systems/tracy", "common-state/tracy", "client/tracy"]
@ -42,6 +43,7 @@ common-state = {package = "veloren-common-state", path = "../common/state"}
anim = {package = "veloren-voxygen-anim", path = "anim"}
i18n = {package = "veloren-i18n", path = "i18n"}
voxygen-egui = {package = "veloren-voxygen-egui", path = "egui"}
# Graphics
winit = {version = "0.24.0", features = ["serde"]}