From 87eee24f20f9a5bfb1942998e50c0ddf4ab95687 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 4 Apr 2020 13:51:08 +0200 Subject: Use num_derive::FromPrimitive without #[macro_use] --- src/lib.rs | 2 -- src/raw/types.rs | 1 + src/statistics/gamedata.rs | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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)] -- cgit v1.2.3