lastfm-client 4.0.1

A modern, async Rust library for fetching and analyzing Last.fm user data
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Top-charts resource clients (top tracks, top artists, top albums, top tags).

mod albums;
mod artists;
mod tags;
mod tracks;

pub use albums::TopAlbumsRequestBuilder;
pub use artists::TopArtistsRequestBuilder;
pub use tags::TopTagsRequestBuilder;
pub use tracks::TopTracksRequestBuilder;