[package]
edition = "2024"
name = "bt_http_utils"
version = "0.7.5"
authors = ["calvarez <calvarez@bachuetech.biz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple HTTP wrapper to simplify POST and GET calls. Default headers with set and get headers. Support cookies. Request generic function for GET, POST, PUT, PATCH, and DELETE."
homepage = "https://github.com/bachuetech/bt_http_utils"
readme = "README.md"
keywords = [
"http",
"client",
]
categories = [
"web-programming::http-server",
"web-programming::http-client",
"web-programming",
]
license = "GPL-3.0-only"
repository = "https://github.com/bachuetech/bt_http_utils"
[lib]
name = "bt_http_utils"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.bt_logger]
version = "0.5.0"
[dependencies.native-tls]
version = "0.2.18"
[dependencies.reqwest]
version = "0.13.3"
features = [
"json",
"hickory-dns",
"cookies",
"native-tls",
]
[dev-dependencies.tokio]
version = "1.52.2"
features = [
"macros",
"rt-multi-thread",
]