-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
23 lines (22 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "httpulse"
version = "0.1.0"
edition = "2024"
description = "Real-time HTTP latency and network quality monitoring with interactive TUI"
keywords = ["http", "latency", "monitoring", "tui", "network"]
categories = ["command-line-utilities", "network-programming"]
[dependencies]
clap = { version = "4", features = ["derive"] }
crossbeam-channel = "0.5"
curl = { version = "0.4", features = ["http2", "static-curl", "static-ssl"] }
curl-sys = "0.4"
crossterm = "0.29"
hdrhistogram = "7"
libc = "0.2"
ratatui = "0.30"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "6"
thiserror = "2"
url = { version = "2", features = ["serde"] }
uuid = { version = "1.19.0", features = ["v4", "serde"] }