-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "sense"
version = "0.1.1"
edition = "2021"
description = "A simple tool to sample and plot power consumption, average frequency and cpu die temperatures over time."
repository = "https://github.com/luukvanderduim/sense"
license = "MIT OR Apache-2.0"
readme = "README.md"
authors = ["Luuk van der Duim <luukvanderduim@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argh = "0.1.10"
cpu-freq = "0.0.2"
csv = "1.1.6"
once_cell = "1.16.0"
plotters = { version = "0.3.5", default-features = false, features = [
"bitmap_backend", "bitmap_encoder", "bitmap_gif",
"svg_backend",
"image",
"all_series", "all_elements",
"full_palette",
"colormaps"
] }
sensors = "0.2.2"
termion = "2.0.1"