reqwest-rest 0.1.0

An opinionated utility to help with creating (and configuring) one-off idiomatic REST API clients.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "reqwest-rest"
version = "0.1.0"
authors = ["Chris Beck"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An opinionated utility to help with creating (and configuring) one-off idiomatic REST API clients."
readme = "README.md"
license = "MIT"
repository = "https://github.com/cbeck88/reqwest-rest"

[features]
default = [
    "reqwest/default",
    "reqwest-retry",
    "tracing",
]
native-tls = ["reqwest/native-tls"]
reqwest-retry = [
    "dep:reqwest-retry",
    "dep:retry-policies",
]
rustls-tls = ["reqwest/rustls-tls"]
tracing = ["dep:tracing"]

[lib]
name = "reqwest_rest"
path = "src/lib.rs"

[dependencies.displaydoc]
version = "0.2"

[dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false

[dependencies.reqwest-middleware]
version = "0.3"
features = ["json"]

[dependencies.reqwest-retry]
version = "0.6"
optional = true

[dependencies.retry-policies]
version = "0.4"
optional = true

[dependencies.serde]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_qs]
version = "0.13"
default-features = false

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.url]
version = "2.2"