2021-11-17 17:28:09 +01:00
|
|
|
[package]
|
|
|
|
name = "amdfand"
|
2022-06-13 12:54:50 +02:00
|
|
|
version = "1.0.12"
|
2021-11-17 17:28:09 +01:00
|
|
|
edition = "2018"
|
|
|
|
description = "AMDGPU fan control service"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["hardware", "amdgpu"]
|
|
|
|
categories = ["hardware-support"]
|
|
|
|
repository = "https://github.com/Eraden/amdgpud"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-01 16:10:27 +02:00
|
|
|
amdgpu = { path = "../amdgpu", version = "1.0.9", features = ["gui-helper"] }
|
2021-12-04 09:02:57 +01:00
|
|
|
amdgpu-config = { path = "../amdgpu-config", version = "1.0.9", features = ["fan"] }
|
2021-11-17 17:28:09 +01:00
|
|
|
|
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
|
|
toml = { version = "0.5.8" }
|
2021-12-04 09:02:57 +01:00
|
|
|
ron = { version = "0.1.0" }
|
|
|
|
|
|
|
|
thiserror = { version = "1.0.30" }
|
2021-11-17 17:28:09 +01:00
|
|
|
gumdrop = { version = "0.8.0" }
|
|
|
|
|
|
|
|
log = { version = "0.4.14" }
|
|
|
|
pretty_env_logger = { version = "0.4.0" }
|
2021-11-25 16:52:03 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
amdgpu = { path = "../amdgpu", version = "1.0" }
|
2021-12-03 07:35:17 +01:00
|
|
|
amdgpu-config = { path = "../amdgpu-config", version = "1.0", features = ["fan"] }
|