-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 950 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 950 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
28
29
30
[package]
name = "batteryctl"
version = "0.1.0"
edition = "2024"
authors = ["Robin Ohs <me@robinohs.dev>"]
license = "MIT OR Apache-2.0"
description = "A command-line tool to monitor and manage battery information."
repository = "github.com/robinohs/batteryctl"
keywords = ["battery", "monitoring", "cli", "rust"]
categories = ["command-line-utilities", "system-monitoring"]
readme = "README.md"
[dependencies]
battery = { git = "https://github.com/robinohs/rust-battery" }
carbond-lib = "0.3.0"
clap = { version = "4.5.54", features = ["derive"] }
color-eyre = "0.6.5"
colored = "3.0.0"
eyre = "0.6.12"
indexmap = { version = "2.13.0", features = ["serde"] }
log = "0.4.29"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
shadow-rs = { version = "1.5.0", default-features = false }
stderrlog = "0.6.0"
uom = { version = "0.37.0", features = ["f64", "serde"] }
which = "8.0.0"
[build-dependencies]
shadow-rs = "1.5.0"