librespot/protocol/src/lib.rs

13 lines
451 B
Rust
Raw Normal View History

#![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"));
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