rpick 0.9.1

Helps you pick items from a list by various algorithms. Example uses: pick a restaurant you haven't been to in a while, or an album to listen to.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM registry.fedoraproject.org/fedora:38
LABEL maintainer="Randy Barlow <randy@electronsweatshop.com>"

RUN dnf upgrade -y
# openssl-devel is needed for cargo-audit
RUN dnf install -y cargo clippy openssl-devel rustfmt
# cargo-license is useful for finding all the licenses of the bundled libraries
RUN cargo install cargo-audit cargo-license

CMD ["bash"]