Crates.io | rhymessage |
lib.rs | rhymessage |
version | 1.3.1 |
source | src |
created_at | 2020-10-19 07:12:05.903746 |
updated_at | 2020-11-10 07:06:09.386899 |
description | Implementation of IETF RFC 5322, Internet Message Format |
homepage | |
repository | https://github.com/rhymu8354/MessageHeaders.git |
max_upload_size | |
id | 302811 |
size | 80,852 |
This is a library which implements RFC 5322, "Internet Message Format".
More information about the Rust implementation of this library can be found in the crate documentation.
The purpose of this library is to provide a MessageHeaders
type which can be
used to parse the header portion of e-mail or web server/client messages from
strings, render them as strings, and get or set the individual headers.
This is a multi-language library containing independent implementations for the following programming languages:
A portable library is built which depends only on the C++11 compiler and standard library, so 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
Licensed under the MIT license.