-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 751 Bytes
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
[package]
name = "rustdash"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "Terminal-based monitoring dashboard for Prometheus and Loki built with Rust"
repository = "https://github.com/yourusername/rustdash"
license = "MIT"
readme = "README.md"
[dependencies]
# TUI framework
ratatui = "0.28"
crossterm = "0.28"
# Async runtime
tokio = { version = "1.41", features = ["full"] }
# HTTP client
reqwest = { version = "0.12", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Time handling
chrono = "0.4"
# Logging
log = "0.4"
env_logger = "0.11"
# Clipboard support
clipboard = "0.5"