eraden
7616ddd8fc
GUI in iced Basic plot manipulation Working solution Fix documentation Fix build scripts Slice application Change views Very basic GUI Reload config GUI Helper for root tasks - maybe sock files for all services will be better Add save button Xorg gui and save config to target file Documentation and clippy fixes Avoid compiling gui on CI Readme files Add missing dependencies Add missing pgp key Refactor workflow Refactor workflow Add drag and drop
30 lines
883 B
TOML
30 lines
883 B
TOML
[package]
|
|
name = "amdmond-lib"
|
|
version = "1.0.9"
|
|
edition = "2021"
|
|
description = "AMD GPU monitoring tool for Linux"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["hardware", "amdgpu"]
|
|
categories = ["hardware-support"]
|
|
repository = "https://github.com/Eraden/amdgpud"
|
|
|
|
[dependencies]
|
|
amdgpu = { path = "../amdgpu", version = "1.0.9" }
|
|
amdgpu-config = { path = "../amdgpu-config", version = "1.0.9", features = ["monitor", "fan"] }
|
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
toml = { version = "0.5.8" }
|
|
csv = { version = "1.1.6" }
|
|
|
|
thiserror = "1.0.30"
|
|
gumdrop = { version = "0.8.0" }
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
|
|
log = { version = "0.4.14" }
|
|
pretty_env_logger = { version = "0.4.0" }
|
|
|
|
[dev-dependencies]
|
|
amdgpu = { path = "../amdgpu", version = "1.0" }
|
|
amdgpu-config = { path = "../amdgpu-config", version = "1.0", features = ["monitor", "fan"] }
|