lastfm-client 3.5.0

A modern, async Rust library for fetching and analyzing Last.fm user data
Documentation
1
2
3
4
5
6
7
8
9
10
mod albums;
mod artists;
mod period;
mod tracks;
pub(crate) mod utils;

pub use albums::*;
pub use artists::*;
pub use period::{Period, TrackLimit};
pub use tracks::*;