From eb8f9517bff50b11dc3b95e366596d5e58446010 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Fri, 23 Dec 2022 02:32:20 -0500 Subject: [PATCH] clean up --- crates/bevy_diagnostic/Cargo.toml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 8dc14fba845c47..060291e18015a8 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -21,17 +21,10 @@ bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # iOS or MacOS [target.'cfg(any(target_os="ios",target_os="macos"))'.dependencies.sysinfo] version = "0.27.1" +# Some features of sysinfo are not supported by apple. This will disable those features on apple devices features = ["apple-app-store"] default-features = false -# use the unknown ci feature for RPi -# [target.'cfg(all(target_os="linux",any(target_arch="aarch64",target_arch="arm")))'.dependencies.sysinfo] -# version = "0.27.1" -# # this prevents linking to the C interface, which causes some build issues -# features = ["unknown-ci"] -# default-features = false - -# general case [dependencies.sysinfo] version = "0.27.1" default-features = false