hyper_lua_actor 0.3.2

Binding of lua_actor & hyper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate futures;
extern crate hyper;
extern crate url;

extern crate fp_rust;
#[cfg(feature = "for_rlua")]
extern crate lua_actor;
#[cfg(not(feature = "for_rlua"))]
extern crate mlua;
#[cfg(not(feature = "for_rlua"))]
extern crate mlua_actor;
#[cfg(feature = "for_rlua")]
extern crate rlua;

#[cfg(not(feature = "for_rlua"))]
pub mod mlua_bind;
#[cfg(feature = "for_rlua")]
pub mod rlua_bind;