blob: 16ecdc3059dd565cb0f5034e7f0d6bc8967d8842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "connection-checker"
description = "Simple cli for testing Mullvad VPN connections"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = "1.0.99"
clap = { workspace = true, features = ["derive"] }
ping = "0.5.2"
reqwest = { version = "0.12.23", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serde = { workspace = true, features = ["derive"] }
socket2 = { workspace = true, features = ["all"] }
|