-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 946 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 946 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
31
32
33
34
35
36
37
[package]
name = "macmon"
version = "0.6.1"
edition = "2024"
description = "Sudoless performance monitoring CLI tool for Apple Silicon processors"
authors = ["vladkens"]
license = "MIT"
repository = "https://github.com/vladkens/macmon"
readme = "readme.md"
keywords = ["macos", "monitoring", "performance", "cli"]
categories = ["command-line-utilities", "hardware-support"]
[lints.rust]
non_camel_case_types = "allow"
unreachable_code = "allow"
unused_assignments = "allow"
unused_imports = "deny"
[lints.clippy]
needless_range_loop = "allow"
single_match = "allow"
[profile.release]
panic = "abort"
strip = false
lto = false
[dependencies]
chrono = "0.4.41"
clap = { version = "4.5.39", features = ["derive"] }
core-foundation = "0.10.1"
libc = "0.2.172"
num-traits = "0.2.19"
ratatui = { version = "0.29.0", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde-inline-default = "0.2.3"
serde_json = "1.0.140"