souvlaki 0.5.2

A cross-platform media key and metadata handling library.
Documentation
pub use self::platform::*;

#[cfg(target_os = "windows")]
#[path = "windows/mod.rs"]
mod platform;

#[cfg(target_os = "macos")]
#[path = "macos/mod.rs"]
mod platform;

#[cfg(all(unix, not(target_os = "macos")))]
#[path = "mpris/mod.rs"]
mod platform;

#[cfg(all(
    not(target_os = "linux"),
    not(target_os = "netbsd"),
    not(target_os = "freebsd"),
    not(target_os = "openbsd"),
    not(target_os = "dragonfly"),
    not(target_os = "windows"),
    not(target_os = "macos")
))]
#[path = "empty/mod.rs"]
mod platform;