15 lines
436 B
TOML
15 lines
436 B
TOML
[package]
|
|
name = "socktop_agent"
|
|
version = "0.1.0"
|
|
authors = ["Jason Witty <jasonpwitty+socktop@proton.me>"]
|
|
description = "Remote system monitor over WebSocket, TUI like top"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = { version = "0.7", features = ["ws", "macros"] }
|
|
sysinfo = "0.36.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
futures = "0.3"
|
|
futures-util = "0.3.31" |