httpget 0.1.23

A small, simple client to make http get requests and return a 0 status code if they succeed, 1 status code otherwise
[[bin]]
name = "httpget"
path = "src/main.rs"

[dependencies.minreq]
version = "2.13.0"

[features]
default = []
tls = ["minreq/https-rustls"]

[package]
authors = ["Natalia Maximo <iam@natalia.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A small, simple client to make http get requests and return a 0 status code if they succeed, 1 status code otherwise"
edition = "2021"
keywords = ["http", "client", "minimal"]
license = "MIT"
name = "httpget"
readme = "README.md"
repository = "https://github.com/taliamax/httpget"
version = "0.1.23"

[package.metadata.deb.variants.tls]
features = ["tls"]

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true