strum 0.21.0

Helpful macros for working with enums and strings
Documentation
# Strum [![Build Status](https://travis-ci.org/Peternator7/strum.svg?branch=master)](https://travis-ci.org/Peternator7/strum) [![Latest Version](https://img.shields.io/crates/v/strum.svg)](https://crates.io/crates/strum) [![Rust Documentation](https://docs.rs/strum/badge.svg)](https://docs.rs/strum) Strum is a set of macros and traits for working with enums and strings easier in Rust. The full version of the README can be found on [Github](https://github.com/Peternator7/strum). # Including Strum in Your Project Import strum and strum_macros into your project by adding the following lines to your Cargo.toml. Strum_macros contains the macros needed to derive all the traits in Strum. ```toml [dependencies] strum = "0.21" strum_macros = "0.21" # You can also access strum_macros exports directly through strum using the "derive" feature strum = { version = "0.21", features = ["derive"] } ```