2021-12-03 07:35:17 +01:00
|
|
|
[package]
|
|
|
|
name = "amdgpu-config"
|
2022-06-13 12:54:50 +02:00
|
|
|
version = "1.0.10"
|
2021-12-03 07:35:17 +01:00
|
|
|
edition = "2021"
|
2021-12-12 17:42:56 +01:00
|
|
|
description = "Subcomponent of AMDGPU tools"
|
2021-12-12 17:41:42 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["hardware", "amdgpu"]
|
|
|
|
categories = ["hardware-support"]
|
|
|
|
repository = "https://github.com/Eraden/amdgpud"
|
2021-12-03 07:35:17 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "amdgpu_config"
|
|
|
|
path = "./src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
fan = []
|
|
|
|
voltage = []
|
|
|
|
monitor = []
|
2021-12-04 09:02:57 +01:00
|
|
|
gui = []
|
2021-12-03 07:35:17 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2022-06-13 13:10:17 +02:00
|
|
|
amdgpu = { path = "../amdgpu", version = "1.0.11", features = ["gui-helper"] }
|
2021-12-03 07:35:17 +01:00
|
|
|
|
|
|
|
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" }
|
|
|
|
|
|
|
|
log = { version = "0.4.14" }
|
|
|
|
pretty_env_logger = { version = "0.4.0" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-06-13 13:10:17 +02:00
|
|
|
amdgpu = { path = "../amdgpu", version = "1.0", features = ["gui-helper"] }
|