A crate to serialize/deserialize enums into/from a string.
Converts enums to a string when using [serde] and [postgres].
```rust
pub enum ChannelTypeShortcode { Text, // TEXT #[enum_str(string = "w")] Theater, // w } ```