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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#![crate_name = "rustless"]
#![crate_type = "rlib"]
// #![deny(warnings)]
#![deny(bad_style)]

extern crate regex;
extern crate serde;
extern crate serde_json;
extern crate hyper;
extern crate url;
extern crate error;
extern crate cookie;
extern crate iron;
extern crate typemap;
extern crate plugin;
extern crate bodyparser;
extern crate valico;
extern crate queryst;
extern crate jsonway;
extern crate typeable;
extern crate traitobject;

#[macro_use]
extern crate lazy_static;

#[macro_use]
extern crate log;

pub use json::{JsonValue};
pub use backend::{Request, SimpleRequest, Response, Handler, HandleResult, HandleSuccessResult, ResponseBody};
pub use errors::{ErrorResponse};
pub use framework::{
    Endpoint, Client, Api, Application, Namespace, Nesting, Media, Versioning
};

pub mod prelude {
    pub use {Nesting, Extensible};
}

pub trait Extensible {
    fn ext(&self) -> &::typemap::TypeMap;
    fn ext_mut(&mut self) -> &mut ::typemap::TypeMap;
}

macro_rules! impl_extensible {
    ($t:ty) => (
        impl $crate::Extensible for $t {
            fn ext(&self) -> &::typemap::TypeMap { &self.ext }
            fn ext_mut(&mut self) -> &mut ::typemap::TypeMap { &mut self.ext }
        }
    )
}

#[macro_use] pub mod errors;
#[macro_use] pub mod backend;
pub mod server;
pub mod framework;
pub mod batteries;
pub mod json;