-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 1.12 KB
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
[workspace]
members = [ "watt", "xtask" ]
resolver = "3"
[workspace.package]
authors = [ "NotAShelf <raf@notashelf.dev>", "RGBCube <git@rgbcu.be>" ]
description = "Modern CPU frequency and power management utility for Linux"
edition = "2024" # Keep in sync with .rustfmt.toml.
license = "MPL-2.0"
readme = true
repository = "https://github.com/notashelf/watt"
rust-version = "1.88"
version = "1.0.0"
[workspace.dependencies]
anyhow = "1.0.100"
clap = { features = [ "derive", "env" ], version = "4.5.50" }
clap-verbosity-flag = "3.0.4"
clap_complete = "4.5.59"
clap_complete_nushell = "4.5.9"
ctrlc = "3.5.1"
env_logger = "0.11.8"
log = "0.4.28"
nix = { features = [ "fs" ], version = "0.31.1" }
num_cpus = "1.17.0"
humantime = "2.3.0"
serde = { features = [ "derive" ], version = "1.0.228" }
toml = "1.0.6"
yansi = { features = [ "detect-env", "detect-tty" ], version = "1.0.1" }