[package]
edition = "2021"
rust-version = "1.88"
name = "nestrs-http"
version = "1.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Outbound HTTP client for nestrs — HttpModule, HttpService (shared reqwest::Client with sane default timeouts), HttpServiceOptions builder."
readme = "README.md"
keywords = [
"http",
"reqwest",
"client",
"nest",
"axum",
]
categories = [
"api-bindings",
"web-programming",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Joshyahweh/nestrs"
[features]
default = []
reqwest = []
[lib]
name = "nestrs_http"
path = "src/lib.rs"
[[test]]
name = "timeouts"
path = "tests/timeouts.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.nestrs-core]
version = "1.5.0"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"net",
"signal",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"net",
"signal",
"macros",
"rt-multi-thread",
]