1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/*!
PlainTalk
=========
This is a library for parsing and generating [PlainTalk][plaintalk].

PlainTalk is a message and field framing protocol. Fields are separated by an
ASCII space, messages are terminated by a newline (CR LF or LF). For a more
complete description of PlainTalk, see [PlainTalk – Introduction and
Definition][plaintalk].

[plaintalk]: http://magnushoff.com/plaintalk/introduction-and-definition.html
*/

pub mod pushparser;
pub mod pullparser;

pub mod pushgenerator;