httpageboy 1.0.13

A lightweight library for handling raw HTTP request/response transmission. Good base for APIs. Supports both synchronous and asynchronous programming models.
Documentation
[[bin]]
name = "httpageboy"
path = "src/main.rs"

[dependencies.async-std]
features = ["attributes"]
optional = true
version = "1"

[dependencies.async-trait]
version = "0.1.89"

[dependencies.futures]
version = "0.3"

[dependencies.futures-lite]
optional = true
version = "1.8"

[dependencies.smol]
optional = true
version = "1"

[dependencies.tokio]
features = ["rt", "net", "io-util", "rt-multi-thread", "macros", "time"]
optional = true
version = "1"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

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

[features]
async_smol = ["smol", "futures-lite"]
async_std = ["async-std"]
async_tokio = ["tokio"]
sync = []

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

[package]
authors = ["fahedsl <fahedsl@yandex.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "web-programming::http-server"]
description = "A lightweight library for handling raw HTTP request/response transmission. Good base for APIs. Supports both synchronous and asynchronous programming models."
documentation = "https://docs.rs/httpageboy"
edition = "2024"
homepage = "https://gitlab.com/numanope/libs/rs/http-server"
keywords = ["http", "server", "request", "response"]
license = "MIT"
name = "httpageboy"
readme = "README.md"
repository = "https://gitlab.com/numanope/libs/rs/http-server"
version = "1.0.13"

[[test]]
name = "test_async_smol"
path = "tests/test_async_smol.rs"

[[test]]
name = "test_async_std"
path = "tests/test_async_std.rs"

[[test]]
name = "test_async_tokio"
path = "tests/test_async_tokio.rs"

[[test]]
name = "test_sync"
path = "tests/test_sync.rs"