dnd_dice_roller 0.5.1

A simple dice rolling library for dnd dice strings
Documentation
use dice_command_parser::error::ParserError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum DiceError {
    #[error("Error parsing input: {0}")]
    ParseError(#[from] ParserError),
    #[error("An unknown error occurred")]
    Unknown,
}