aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
-rw-r--r--src/raw/types.rs1
-rw-r--r--src/statistics/gamedata.rs1
3 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 931ee61..de0ac85 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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)]