-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 841 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
[package]
name = "spidy"
version = "0.1.2"
edition = "2024"
description = "A fast, customizable CLI tool for testing your internet connection speed using Cloudflare's speed test infrastructure."
license = "MIT"
readme = "README.md"
authors = ["Viet-Anh Duong <vietanhs0817@gmail.com>"]
repository = "https://github.com/mipsel64/spidy"
exclude = ["/.github/", "/.gitignore"]
[[bin]]
name = "spidy"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
eyre = "0.6"
serde = { version = "1", features = ["derive"] }
clap = { version = "4", features = ["derive", "env"] }
serde_json = "1"
curl = { version = "0.4", default-features = false, features = ["ssl"] }
parse-size = "1"
indicatif = "0.18"
tabwriter = "1"
console = { version = "0.16", default-features = false, features = [
"ansi-parsing",
"std",
] }