-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.06 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "vmonitor"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["AprilNEA <github@sku.moe>"]
description = "A simple and lightweight system monitor"
repository = "https://github.com/vmvision/vmonitor"
readme = "README.md"
keywords = ["monitor", "system", "websocket", "metrics"]
categories = ["rust-patterns", "network-programming"]
[dependencies]
# Core
os_info = "3.7.0"
sysinfo = "0.33.1"
netstat2 = "0.11.1"
# Runtime
tokio = { version = "1", features = ["full"] }
# Serialization
toml = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmpv = "1.3.0"
rmp-serde = "1.3.0"
# Websocket
rustls = { version = "0.23.25", default-features=false, features = ["ring"] }
tokio-tungstenite = { version = "0.26.1", features = ["rustls-tls-webpki-roots"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utils
config = "0.14.0"
futures = "0.3"
futures-util = "0.3"
# CLI
clap = { version = "4.5", features = ["derive"] }
[dev-dependencies]
tempfile = "3.8"
tokio-test = "0.4"