36 lines
781 B
TOML
36 lines
781 B
TOML
[package]
|
|
name = "amdgpu-config"
|
|
version = "1.0.10"
|
|
edition = "2021"
|
|
description = "Subcomponent of AMDGPU tools"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["hardware", "amdgpu"]
|
|
categories = ["hardware-support"]
|
|
repository = "https://github.com/Eraden/amdgpud"
|
|
|
|
[lib]
|
|
name = "amdgpu_config"
|
|
path = "./src/lib.rs"
|
|
|
|
[features]
|
|
fan = []
|
|
voltage = []
|
|
monitor = []
|
|
gui = []
|
|
|
|
[dependencies]
|
|
amdgpu = { path = "../amdgpu", version = "1.0.11", features = ["gui-helper"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = { version = "0.5" }
|
|
csv = { version = "1.1" }
|
|
|
|
thiserror = "1.0"
|
|
gumdrop = { version = "0.8" }
|
|
|
|
log = { version = "0.4" }
|
|
pretty_env_logger = { version = "0.4" }
|
|
|
|
[dev-dependencies]
|
|
amdgpu = { path = "../amdgpu", version = "1.0", features = ["gui-helper"] }
|