# TuneIn Rust Client Library
This is a Rust client library for the [TuneIn Radio](https://tunein.com/) API. ## 🚚 Installation Add the following to your Cargo.toml: ```toml [dependencies] tunein = "0.1" ``` ## 🚀 Usage Search for a station: ```rust use tunein::TuneInClient; #[tokio::main] async fn main() -> Result<(), Box