BrickSet API

This crate provides utilities for working with the BrickSet API. This includes:

Features

Examples

The examples in this crate require a couple of environment variables:

sh export BRICKSET_KEY="<your BrickSet API key>" export BRICKSET_USERNAME="<your BrickSet username>"

getwantedsets

get_wanted_sets uses the high-level reqwest-based API to retrieve a BrickSet user's wantlist.

cargo run --example get_wanted_sets

getwantedsets_low

get_wanted_sets_low does the same thing as get_wanted_sets, but doesn't use the high-level wrapper.