mtemp/Cargo.toml

26 lines
572 B
TOML
Raw Normal View History

2023-08-19 17:15:18 +02:00
[package]
2023-08-19 17:44:33 +02:00
name = "mtemp"
2023-08-19 17:39:41 +02:00
description = "Simple personal CLI tool for monitoring temperatures"
license = "MIT"
authors = ["Midefos <midefos@gmail.com>"]
2024-02-03 13:07:29 +01:00
version = "0.1.21"
2023-08-19 17:15:18 +02:00
edition = "2021"
2023-08-19 17:39:41 +02:00
repository = "https://git.midefos.com/midefos/temp/"
readme = "README.md"
keywords = ["temperature", "cli", "nvidia", "amd"]
categories = ["command-line-utilities"]
2023-08-19 17:15:18 +02:00
2024-02-03 12:42:56 +01:00
[lib]
name = "mtemp"
crate-type = ["lib"]
[[bin]]
name = "mtemp"
path = "src/main.rs"
2023-08-19 17:15:18 +02:00
[dependencies]
anyhow = "1.0.86"
serde = {version = "1.0.208", features = ["derive"]}
serde_json = "1.0.125"
2023-08-19 17:15:18 +02:00
structopt = "0.3.26"