peach-workspace/peach-stats/Cargo.toml

32 lines
1015 B
TOML
Raw Normal View History

2021-08-06 17:58:40 +00:00
[package]
name = "peach-stats"
2022-07-14 07:57:34 +00:00
version = "0.3.1"
2021-12-09 07:44:27 +00:00
authors = ["Andrew Reid <glyph@mycelial.technology>"]
2021-08-06 17:58:40 +00:00
edition = "2018"
2021-12-09 07:44:27 +00:00
description = "Query system statistics. Provides a wrapper around the probes and systemstat crates."
keywords = ["peachcloud", "system stats", "system statistics", "disk", "memory"]
2021-08-06 17:58:40 +00:00
homepage = "https://opencollective.com/peachcloud"
2021-12-09 07:44:27 +00:00
repository = "https://git.coopcloud.tech/PeachCloud/peach-workspace/src/branch/main/peach-stats"
2021-08-06 17:58:40 +00:00
readme = "README.md"
2021-12-09 07:44:27 +00:00
license = "LGPL-3.0-only"
2021-08-06 17:58:40 +00:00
publish = false
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
log = "0.4"
2021-12-09 07:44:27 +00:00
miniserde = { version = "0.1.15", optional = true }
2021-10-30 10:45:09 +00:00
probes = "0.4.1"
2021-12-09 07:44:27 +00:00
serde = { version = "1.0.130", features = ["derive"], optional = true }
2021-10-30 10:58:40 +00:00
systemstat = "0.1.10"
2021-10-30 10:26:09 +00:00
2021-12-09 07:44:27 +00:00
[features]
default = []
# Provide `Serialize` and `Deserialize` traits for library structs using `miniserde`
miniserde_support = ["miniserde"]
# Provide `Serialize` and `Deserialize` traits for library structs using `serde`
serde_support = ["serde"]