spotatui 0.35.6

A Spotify client for the terminal written in Rust, powered by Ratatui
1
2
3
4
5
6
7
8
9
10
//! Native Spotify playback using librespot
//!
//! This module provides native audio playback capabilities using the librespot library.
//! It registers spotatui as a Spotify Connect device and handles audio streaming.

#[cfg(feature = "streaming")]
mod streaming;

#[cfg(feature = "streaming")]
pub use streaming::*;