gcast 0.1.5

A library for using Google Cast devices
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! All backend related networking/protocol code.
//!
//! This module consists of two parts - `net` and `protocol`.
//!
//! The networking code and the protocol code are completely independent,
//! and are located in separate submodules.
//!
//! The two are brought together into the `Connection` struct.

pub use self::connection::Connection;

pub mod connection;

pub mod net;

pub extern crate gcast_protocol as protocol;