Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - add system information plugin and update relevant examples #5911

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
59ec59c
add system information plugin and update relevant examples
l1npengtul Sep 8, 2022
b7c5680
fix docs and typo
l1npengtul Sep 8, 2022
0059b34
Merge branch 'main' into sys-usage-info
l1npengtul Dec 1, 2022
ca5b05a
Merge branch 'bevyengine:main' into sys-usage-info
l1npengtul Dec 2, 2022
19b6f31
fix messed up cargo toml
l1npengtul Dec 2, 2022
28dee0e
Update crates/bevy_diagnostic/src/system_information_diagnostics_plug…
l1npengtul Dec 3, 2022
a110617
Merge branch 'bevyengine:main' into sys-usage-info
l1npengtul Dec 23, 2022
c008554
simplify cargo toml according to 5454
l1npengtul Dec 23, 2022
38e8442
implement suggestions, remove sus (very sad)
l1npengtul Dec 23, 2022
2792d23
Merge branch 'main' into sys-usage-info
l1npengtul Dec 28, 2022
e9d174a
add ghost plugin
l1npengtul Dec 28, 2022
d6695eb
fix compile error, let me out of HS omori
l1npengtul Dec 28, 2022
a2f20bc
add warning about unsupporoted platforms on doc for plugin
l1npengtul Dec 28, 2022
08b5295
madotsuki you forgot to derive madotsuki no dont go to the balcony
l1npengtul Dec 28, 2022
7fc4b25
sunny removes the unused import warningand fixes the nonexistant syst…
l1npengtul Dec 28, 2022
1ae255e
add back #bevy
l1npengtul Dec 28, 2022
59f3e4c
remove code duplication
IceSentry Dec 30, 2022
b37721a
clean up
IceSentry Dec 30, 2022
888c26c
Merge pull request #1 from IceSentry/log-sysinfo-usage
l1npengtul Dec 30, 2022
c51e9fc
fix cfg sys usage
IceSentry Jan 2, 2023
4cc8ab7
Merge pull request #2 from IceSentry/fix-sysuage-info
l1npengtul Jan 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simplify cargo toml according to 5454
  • Loading branch information
l1npengtul authored Dec 23, 2022
commit c008554b51a55763ca1ba7e2016278f41e66fcee
15 changes: 4 additions & 11 deletions crates/bevy_diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,11 @@ 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.26.8"
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.26.8"
features = [
"unknown-ci",
] # this features prevents linking to the C interface, which causes the build issues
default-features = false

# general case
[dependencies.sysinfo]
version = "0.26.8"
version = "0.27.1"
default-features = false