├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── example.rs └── src ├── auth.rs ├── client.rs ├── error.rs ├── lib.rs ├── models.rs └── scrobbler.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/examples/example.rs -------------------------------------------------------------------------------- /src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/auth.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/models.rs -------------------------------------------------------------------------------- /src/scrobbler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmfutcher/rustfm-scrobble/HEAD/src/scrobbler.rs --------------------------------------------------------------------------------