2015-05-09 10:07:24 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(mod_path)]
|
|
|
|
|
|
|
|
extern crate protobuf;
|
|
|
|
|
2015-04-25 20:32:07 +00:00
|
|
|
mod_path! keyexchange (concat!(env!("OUT_DIR"), "/keyexchange.rs"));
|
|
|
|
mod_path! authentication (concat!(env!("OUT_DIR"), "/authentication.rs"));
|
2015-06-23 14:38:29 +00:00
|
|
|
mod_path! mercury (concat!(env!("OUT_DIR"), "/mercury.rs"));
|
|
|
|
mod_path! metadata (concat!(env!("OUT_DIR"), "/metadata.rs"));
|
2016-01-01 22:56:13 +00:00
|
|
|
mod_path! pubsub (concat!(env!("OUT_DIR"), "/pubsub.rs"));
|
2015-07-01 17:49:03 +00:00
|
|
|
mod_path! spirc (concat!(env!("OUT_DIR"), "/spirc.rs"));
|
2015-04-25 20:32:07 +00:00
|
|
|
|