Crates.io | rhymuweb |
lib.rs | rhymuweb |
version | 1.2.1 |
source | src |
created_at | 2020-11-10 07:19:30.953546 |
updated_at | 2021-03-29 18:28:01.910768 |
description | Common types for the Hypertext Transfer Protocol (HTTP) |
homepage | |
repository | https://github.com/rhymu8354/Http.git |
max_upload_size | |
id | 310666 |
size | 120,571 |
This is a library which implements common types for the RFC 7230, "Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing".
More information about the Rust implementation of this library can be found in the crate documentation.
The purpose of this library is to provide Request
and Response
types which
can be used parse and generate Hypertext Transfer Protocol (HTTP) requests and
responses.
This is a multi-language library containing independent implementations for the following programming languages:
A portable library is built which depends on the C++11 compiler, the C++ standard library, and non-standard dependencies listed below. It should be supported on almost any platform. The following are recommended toolchains for popular platforms.
This library is not intended to stand alone. It is intended to be included in a larger solution which uses CMake to generate the build system and build applications which will link with the library.
There are two distinct steps in the build process:
Generate the build system using CMake from the solution root. For example:
mkdir build
cd build
cmake -G "Visual Studio 15 2017" -A "x64" ..
Either use CMake or your toolchain's IDE to build. For CMake:
cd build
cmake --build . --config Release