mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 17:59:24 +02:00

When subscribing to a channel, we may actually end up subscribed to other alias channels. We must track these as well in order to redirect received messages properly.
12 lines
451 B
Rust
12 lines
451 B
Rust
#![feature(plugin)]
|
|
#![plugin(mod_path)]
|
|
|
|
extern crate protobuf;
|
|
|
|
mod_path! keyexchange (concat!(env!("OUT_DIR"), "/keyexchange.rs"));
|
|
mod_path! authentication (concat!(env!("OUT_DIR"), "/authentication.rs"));
|
|
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"));
|
|
mod_path! spirc (concat!(env!("OUT_DIR"), "/spirc.rs"));
|
|
|