-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 1.08 KB
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
42
[package]
name = "fastrs"
version = "0.2.1"
edition = "2021"
description = "Pure-Rust speed test against Netflix's fast.com"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/jtnk/fast-rs"
keywords = ["speedtest", "fast", "netflix", "cli", "network"]
categories = ["command-line-utilities"]
[profile.release]
lto = "thin"
strip = true
[lib]
name = "fastrs"
path = "src/lib.rs"
[[bin]]
name = "fastrs"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "sync"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream", "json"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
anyhow = "1"
futures = "0.3"
ratatui = { version = "0.30", optional = true }
crossterm = { version = "0.29", optional = true }
[dev-dependencies]
wiremock = "0.6"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "sync", "test-util"] }
[features]
default = ["tui"]
tui = ["dep:ratatui", "dep:crossterm"]