You've already forked gpui-component
mirror of
https://github.com/librekeys/gpui-component.git
synced 2026-04-14 08:46:29 -07:00
c47cbfc1fd
- Fix #1836 TabBar to support use on TitleBar for Windows. https://github.com/user-attachments/assets/e3e1902c-6b0f-42f7-91bc-9ec56d84aae7
31 lines
666 B
TOML
31 lines
666 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-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"
|