-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 897 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (35 loc) · 897 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
39
40
41
[package]
name = "spd"
version = "0.2.0"
edition = "2021"
authors = ["0mykull <michaelsousajr@gmail.com>"]
description = "An internet speed test CLI tool."
repository = "https://github.com/0mykull/spd"
license = "MIT"
keywords = ["speed-test", "cli", "network", "throughput", "async"]
categories = ["command-line-utilities", "network-programming"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"stream",
] }
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Async Runtime
tokio = { version = "1.36", features = ["full"] }
futures = "0.3"
tokio-util = "0.7"
# Data Handling
bytes = "1.5"
rand = "0.9"
# UI & Formatting
indicatif = "0.18"
owo-colors = "4.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true