1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-05 02:39:53 +02:00
librespot/protocol/src/lib.rs
Will Stott 97f61ec2a8 Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion.
Drop Regex dependency, just parse using simple string methods.

Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion.
2019-09-08 13:07:59 +01:00

9 lines
247 B
Rust

extern crate protobuf;
// This file is parsed by build.rs
// Each included module will be compiled from the matching .proto definition.
pub mod authentication;
pub mod keyexchange;
pub mod mercury;
pub mod metadata;
pub mod pubsub;
pub mod spirc;