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
#![recursion_limit = "1024"]

extern crate byteorder;
extern crate crypto;
#[macro_use]
extern crate error_chain;
extern crate hyper;
extern crate itertools;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate nix;
extern crate regex;
extern crate rustc_serialize;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_rosmsg;
extern crate xml;

pub use api::Ros;
pub use tcpros::{Client, PublisherStream, Message, ServicePair as Service};
pub use api::error;
pub use rosxmlrpc::XmlRpcValue;

mod api;
#[macro_use]
pub mod build_tools;
mod rosxmlrpc;
mod tcpros;
pub mod msg;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}