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
/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * lib.rs                                                 *
 *                                                        *
 * hprose lib for Rust.                                   *
 *                                                        *
 * LastModified: Sep 29, 2016                             *
 * Author: Chen Fei <cf@hprose.com>                       *
 *                                                        *
\**********************************************************/

#![feature(specialization)]
#![feature(test)]

extern crate test;

extern crate num;
extern crate time;
extern crate uuid;

/// Hprose serialization library.
pub mod io;

/// Hprose rpc library.
pub mod rpc;