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
33
34
35
36
37
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]

//! Finchers is a combinator library for building HTTP services, based on
//! Hyper and Futures.

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

pub mod endpoint;
pub mod request;
pub mod response;
pub mod server;
pub mod test;
pub mod util;

mod context;

pub use context::Context;

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

#[doc(inline)]
pub use request::Request;

#[doc(inline)]
pub use response::{Responder, Response};

#[doc(inline)]
pub use server::Server;