curl-rest 0.3.2

A reqwest-like REST client built on libcurl for true blocking requests.
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"
rust-version = "1.85"
name = "curl-rest"
version = "0.3.2"
authors = ["Stanley Masinde <hello@stanleymasinde.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reqwest-like REST client built on libcurl for true blocking requests."
homepage = "https://github.com/StanleyMasinde/curl-rest"
documentation = "https://docs.rs/curl-rest"
readme = "README.md"
keywords = [
    "rest",
    "http",
    "client",
    "curl",
    "blocking",
]
categories = [
    "network-programming",
    "web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/StanleyMasinde/curl-rest"

[features]
default = ["ssl"]
rustls = ["curl/rustls"]
ssl = ["curl/ssl"]
static-curl = ["curl/static-curl"]
static-ssl = [
    "curl/static-ssl",
    "ssl",
]
vendored = [
    "static-curl",
    "static-ssl",
]

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

[[example]]
name = "curl"
path = "examples/curl.rs"

[[example]]
name = "headers"
path = "examples/headers.rs"

[[bench]]
name = "builder"
path = "benches/builder.rs"
harness = false

[dependencies.curl]
version = "0.4"
default-features = false

[dependencies.percent-encoding]
version = "2"

[dependencies.thiserror]
version = "2"

[dependencies.url]
version = "2"

[dev-dependencies.criterion]
version = "0.8"