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


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

[dependencies]
minreq = "2.13.0"

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

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

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