You've already forked gpui-component
mirror of
https://github.com/librekeys/gpui-component.git
synced 2026-04-14 08:46:29 -07:00
https://github.com/zed-industries/zed/pull/49277 ## Breaking Changes - Removed `PixelsExt` trait, the methods are already in GPUI.
32 lines
697 B
TOML
32 lines
697 B
TOML
[package]
|
|
name = "system_monitor"
|
|
description = "A real-time system resource monitor using GPUI Component charts."
|
|
version = "0.5.0"
|
|
publish = false
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
gpui.workspace = true
|
|
gpui_platform.workspace = true
|
|
gpui-component-assets.workspace = true
|
|
gpui-component.workspace = true
|
|
sysinfo = "0.37"
|
|
smol = "2"
|
|
battery = "0.7"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
metal = "0.33"
|
|
core-foundation = "0.10"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.62", features = [
|
|
"Win32_Graphics_Direct3D",
|
|
"Win32_Graphics_Direct3D11",
|
|
"Win32_Graphics_Dxgi",
|
|
] }
|
|
|
|
[lints.clippy]
|
|
dbg_macro = "deny"
|
|
todo = "deny"
|