amdgpud/amdgpu-config/Cargo.toml

36 lines
781 B
TOML
Raw Permalink Normal View History

2021-12-03 07:35:17 +01:00
[package]
name = "amdgpu-config"
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 = []
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
2022-06-15 15:28:07 +02:00
serde = { version = "1.0", features = ["derive"] }
toml = { version = "0.5" }
csv = { version = "1.1" }
2021-12-03 07:35:17 +01:00
2022-06-15 15:28:07 +02:00
thiserror = "1.0"
gumdrop = { version = "0.8" }
2021-12-03 07:35:17 +01:00
2022-06-15 15:28:07 +02:00
log = { version = "0.4" }
pretty_env_logger = { version = "0.4" }
2021-12-03 07:35:17 +01:00
[dev-dependencies]
2022-06-13 13:10:17 +02:00
amdgpu = { path = "../amdgpu", version = "1.0", features = ["gui-helper"] }