icy-metadata 0.6.0

A library for parsing Icecast metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs, missing_debug_implementations)]
#![forbid(unsafe_code)]
#![forbid(clippy::unwrap_used)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

pub mod error;
mod headers;
mod parse;
mod reader;

pub use headers::*;
pub use reader::*;