From 33fb5ec0af72fb96a970b8aa3574d128b5c4e05d Mon Sep 17 00:00:00 2001 From: Joshua Yanovski Date: Thu, 6 Apr 2023 16:29:17 -0700 Subject: [PATCH] Bump thread_priority version. --- Cargo.lock | 6 ++++-- common/state/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11d4114f2d..a43a60c21d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6252,13 +6252,15 @@ dependencies = [ [[package]] name = "thread-priority" -version = "0.9.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a8a950b52fd40d98ac6ed41c7fa9e8dd62b131f48b74f418e810476b01a7460" +checksum = "0c56ce92f1285eaaa11fc1a3201e25de97898c50e87caa4c2aee836fe05288de" dependencies = [ + "bitflags", "cfg-if 1.0.0", "libc", "log", + "rustversion", "winapi 0.3.9", ] diff --git a/common/state/Cargo.toml b/common/state/Cargo.toml index f51420a6b0..a6f87c198d 100644 --- a/common/state/Cargo.toml +++ b/common/state/Cargo.toml @@ -19,7 +19,7 @@ common-base = { package = "veloren-common-base", path = "../base" } core_affinity = "0.5" rayon = "1.5" num_cpus = "1.0" -thread-priority = { version = "0.9.2" } +thread-priority = { version = "0.13.1" } tokio = { version = "1.14", default-features = false, features = ["rt"] } tracing = { version = "0.1", default-features = false } vek = { version = "0.15.8", features = ["serde"] }