1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! A combinator library for building asynchronous HTTP services.

#![doc(html_root_url = "https://docs.rs/finchers/0.10.1")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(warnings)]

extern crate cookie;
#[macro_use]
extern crate futures;
extern crate hyper;
extern crate net2;
extern crate tokio_core;
extern crate tokio_proto;
extern crate tokio_service;

pub mod contrib;
pub mod endpoint;
pub mod http;
pub mod responder;
pub mod service;
pub mod task;
pub mod test;

#[doc(inline)]
pub use endpoint::{Endpoint, IntoEndpoint, NoRoute};

#[doc(inline)]
pub use responder::{ErrorResponder, IntoResponder, Responder};

#[doc(inline)]
pub use task::Task;