rumbo_http_client 0.1.3

A minimal HTTP client library for basic 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"
name = "rumbo_http_client"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal HTTP client library for basic requests"
readme = "README.md"
keywords = [
    "http",
    "client",
    "async",
    "minimal",
]
categories = [
    "network-programming",
    "web-programming::http-client",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crisandolindesmanrumahorbo/rumbo_http_client"

[features]
default = []
tls = [
    "native-tls",
    "tokio-native-tls",
]

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.native-tls]
version = "0.2.14"
optional = true

[dependencies.serde]
version = "1.0.218"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.140"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.0"
features = [
    "net",
    "io-util",
    "rt",
]

[dependencies.tokio-native-tls]
version = "0.3.1"
optional = true

[dependencies.url]
version = "2.5.4"

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