-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (24 loc) · 879 Bytes
/
Cargo.toml
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
[package]
name = "peek"
version = "0.0.0"
authors = ["RoloEdits <[email protected]>"]
description = "CLI tool that records system reported values of a program running and outputs them to JSON or CSV"
catagories = ["profile", "benchmark", "cli", "tool", "terminal"]
homepage = "https://github.com/RoloEdits/peek"
repository = "https://github.com/RoloEdits/peek"
readme = "README.md"
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.6", features = ["derive"] }
csv = "1.3.0"
ctrlc = { version = "3.4.1", features = ["termination"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
sysinfo = "0.29.10"
uuid = { version = "1.5.0", features = ["v4", "serde"] }
[profile.release]
codegen-units = 1
lto = true