fast_chemail/lib.rs
1// Copyright 2016 Jonas Me
2// See the 'AUTHORS' file at the top-level directory for a full list of authors.
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
8//! Package fast_chemail validates the email as it is defined in the HTML specification.
9
10// missing_docs,
11#![deny(
12 missing_copy_implementations,
13 missing_debug_implementations,
14 trivial_casts,
15 trivial_numeric_casts,
16 unsafe_code,
17 unstable_features,
18 unused_import_braces,
19 unused_qualifications
20)]
21
22extern crate ascii_utils;
23
24mod errors;
25mod parser;
26
27pub use errors::*;
28pub use parser::*;