bouillon 0.2.0

A thin, opinionated wrapper around soup that provides an easy, fluent API for sending HTTP 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 = "bouillon"
version = "0.2.0"
build = false
exclude = [
    ".gitignore",
    ".forgejo",
    "ci",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thin, opinionated wrapper around soup that provides an easy, fluent API for sending HTTP requests."
readme = "readme.md"
keywords = [
    "http",
    "request",
    "client",
    "libsoup",
]
categories = ["web-programming::http-client"]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/tautropfli/bouillon"

[features]
default = []
form = [
    "dep:serde_urlencoded",
    "dep:serde",
]
json = [
    "dep:json",
    "dep:serde",
]
query = [
    "dep:serde_urlencoded",
    "dep:serde",
]

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

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

[dependencies.json]
version = "1.0.148"
optional = true
package = "serde_json"

[dependencies.serde]
version = "1.0.228"
optional = true

[dependencies.serde_urlencoded]
version = "0.7.1"
optional = true

[dependencies.soup3]
version = "0.9"