From 344eaca3a897f636991b244f8ae0d393f5dc2aa9 Mon Sep 17 00:00:00 2001 From: galister <22305755+galister@users.noreply.github.com> Date: Sat, 8 Jun 2024 07:49:30 +0900 Subject: [PATCH] sysinfo o longer optional --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a423d4..f0bd930 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ serde_json = "1.0.113" serde_yaml = "0.9.34" smallvec = "1.11.0" strum = { version = "0.26.2", features = ["derive"] } -sysinfo = { version = "0.30.0", optional = true } +sysinfo = { version = "0.30.0" } thiserror = "1.0.56" vulkano = { git = "https://github.com/vulkano-rs/vulkano", rev = "94f50f1" } vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano", rev = "94f50f1" } @@ -66,7 +66,7 @@ xcb = { version = "1.4.0", optional = true, features = [ [features] default = ["openvr", "openxr", "osc", "x11", "wayland"] openvr = ["dep:ovr_overlay", "dep:json"] -openxr = ["dep:openxr", "dep:sysinfo"] +openxr = ["dep:openxr"] osc = ["dep:rosc"] x11 = ["dep:xcb", "wlx-capture/xshm", "xkbcommon/x11"] wayland = ["pipewire", "wlx-capture/wlr", "xkbcommon/wayland"]