-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
37 lines (36 loc) · 1.2 KB
/
Cargo.toml
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
[package]
name = "adguardian"
version = "1.6.0"
edition = "2021"
authors = ["Alicia Sykes"]
description = "Terminal-based, real-time traffic monitoring and statistics for your AdGuard Home instance "
repository = "https://github.com/Lissy93/AdGuardian-Term"
license = "MIT"
readme = ".github/README.md"
keywords = ["adguard", "monitoring", "statistics"]
categories = ["command-line-utilities"]
[dependencies]
# Error objecr for idiomatic error handling
anyhow = "1.0"
# For encoding auth headers
base64 = "0.13"
# Date + time parsing + manipulating
chrono = "0.4"
# Handling of terminal colors
colored = "2.0"
# Term manipulation for kb + mouse events
crossterm = { version = "0.22.0", features = ["serde"] }
# Extension of futures for async computation
futures = "0.3"
# HTTP client
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
# Decerilization of responses
serde = { version = "1.0", features = ["derive"] }
# Decerilization of JSON responses
serde_json = "1.0"
# Read and calculate semantic version numbers
semver = "1.0"
# Date + time manipulation
tokio = { version = "1", features = ["full"] }
# Terminal UI library
tui = { package = "ratatui", version = "0.20.1" }