mtemp/Cargo.toml
2024-02-03 12:42:56 +01:00

26 lines
571 B
TOML

[package]
name = "mtemp"
description = "Simple personal CLI tool for monitoring temperatures"
license = "MIT"
authors = ["Midefos <midefos@gmail.com>"]
version = "0.1.2"
edition = "2021"
repository = "https://git.midefos.com/midefos/temp/"
readme = "README.md"
keywords = ["temperature", "cli", "nvidia", "amd"]
categories = ["command-line-utilities"]
[lib]
name = "mtemp"
crate-type = ["lib"]
[[bin]]
name = "mtemp"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.79"
serde = {version = "1.0.196", features = ["derive"]}
serde_json = "1.0.113"
structopt = "0.3.26"