diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 | ||||
-rw-r--r-- | src/raw/types.rs | 1 | ||||
-rw-r--r-- | src/statistics/gamedata.rs | 1 |
3 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,6 @@ //! module](raw/parser/index.html#buffering)) #![feature(try_trait, stmt_expr_attributes, never_type)] #[macro_use] -extern crate num_derive; -#[macro_use] extern crate getset; use thiserror::Error; diff --git a/src/raw/types.rs b/src/raw/types.rs index 93a75b7..2fbdabc 100644 --- a/src/raw/types.rs +++ b/src/raw/types.rs @@ -1,4 +1,5 @@ use std::{self, fmt}; +use num_derive::FromPrimitive; /// The "friend or foe" enum. #[derive(Copy, Clone, Debug, PartialEq, Eq, FromPrimitive)] diff --git a/src/statistics/gamedata.rs b/src/statistics/gamedata.rs index 400f070..9b5a492 100644 --- a/src/statistics/gamedata.rs +++ b/src/statistics/gamedata.rs @@ -2,6 +2,7 @@ //! some statistics. use std::{fmt, str::FromStr}; use super::boon::{BoonQueue, BoonType}; +use num_derive::FromPrimitive; /// Enum containing all bosses with their IDs. #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, FromPrimitive)] |