rprobe 0.4.2

A simple tool to probe a remote host http or https connection
[package]
name = "rprobe"
version = "0.4.2"
edition = "2021"
license = "MIT"
authors = ["Volker Schwaberow <volker@schwaberow.de>"]
homepage = "https://github.com/vschwaberow/rprobe.git"
repository = "https://github.com/vschwaberow/rprobe.git"
description = "A simple tool to probe a remote host http or https connection"
keywords = ["rust", "network", "security", "network"]
categories = ["command-line-utilities"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[profile.release]
strip = "symbols"
lto = true
codegen-units = 1
opt-level = "s"

[dev-dependencies]
criterion = "0.3"

[[bench]]
name = "rprobe_benchmark"
harness = false

[dependencies]
atty = "0.2.14"
chrono = "0.4.22"
reqwest = "0.11.11"
tokio = { version = "1.21.0", features = ["full"] }