-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (31 loc) · 936 Bytes
/
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
[package]
name = "dns-bench"
version = "0.7.1"
edition = "2021"
authors = ["Alexandr Garbuzov <[email protected]>"]
description = "Find the fastest DNS in your location to improve internet browsing experience."
keywords = ["dns", "network", "cli", "benchmark", "rust"]
categories = ["network-programming", "command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qwerty541/dns-bench"
homepage = "https://github.com/qwerty541/dns-bench"
readme = "README.md"
rust-version = "1.74.1"
include = [
"src/**/*",
"Cargo.*",
"README.md",
"LICENSE-*",
"CHANGELOG.md",
"example.gif",
"README.md"
]
[dependencies]
clap = { version = "4.5.21", features = ["std", "derive"] }
directories = "5.0.1"
indicatif = "0.17.9"
hickory-resolver = "0.24.1"
serde = { version = "1.0.215", features = ["derive"], default-features = false }
tabled = "0.16.0"
toml = "0.8.19"
lazy_static = "1.5.0"