An open API service indexing awesome lists of open source software.

https://github.com/kizzycode/http-tiny-rust

This library provides basic functionality to create/send and receive/parse HTTP-headers and -bodies
https://github.com/kizzycode/http-tiny-rust

Last synced: 21 days ago
JSON representation

This library provides basic functionality to create/send and receive/parse HTTP-headers and -bodies

Awesome Lists containing this project

README

          

[![docs.rs](https://docs.rs/http-tiny/badge.svg)](https://docs.rs/http-tiny)
[![License BSD-2-Clause](https://img.shields.io/badge/License-BSD--2--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
[![License MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![crates.io](https://img.shields.io/crates/v/http-tiny.svg)](https://crates.io/crates/http-tiny)
[![Download numbers](https://img.shields.io/crates/d/http-tiny.svg)](https://crates.io/crates/http-tiny)
[![AppVeyor CI](https://ci.appveyor.com/api/projects/status/github/KizzyCode/http-tiny-rust?svg=true)](https://ci.appveyor.com/project/KizzyCode/http-tiny-rust)
[![dependency status](https://deps.rs/crate/http-tiny/latest/status.svg)](https://deps.rs/crate/http-tiny)

# About
`http-tiny` is a small, nearly dependency-less crate to create, serialize, read and parse HTTP/1.1-headers.

It is not designed to be the fastest crate out there, but it's easy to understand and read and flexible enough to be
useful as general-purpose HTTP-header crate.

## Query strings
Please note that query string parsing and percent encoding has been
[moved to a different crate](https://crates.io/crates/querystring_tiny) for ease of maintainance.