-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 812 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 812 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
[package]
name = "lcli"
version = "0.1.0"
edition = "2024"
license = "MIT"
authors = ["LHagfoss <lucash.1707@gmail.com>"]
description = "A simple but effective internet speed test CLI tool built with Rust"
homepage = "https://lhagfoss.com"
repository = "https://github.com/LHagfoss/lcli"
[[bin]]
name = "lcli"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.40", features = ["derive"] }
serde_json = { version = "1.0.140" }
owo-colors = { version = "4.2.1" }
strum = { version = "0.27.1", features = ["derive"] }
tabled = { version = "0.20.0" }
chrono = { version = "0.4.41" }
serde = { version = "1.0.219", features = ["derive"] }
dirs = "6.0.0"
console = "0.15.11"
reqwest = { version = "0.12.15", default-features = false, features = ["blocking", "json", "rustls-tls"] }
clap_complete = "4.6.0"