diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-04-04 13:51:08 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-04-04 13:55:20 +0200 |
commit | 87eee24f20f9a5bfb1942998e50c0ddf4ab95687 (patch) | |
tree | c9e442d7bc8feb7bc7f58396a4dccc863eaac32b /src/statistics | |
parent | 4ec62bbac872bbfd95413af2f00c3f4a36c70630 (diff) | |
download | evtclib-87eee24f20f9a5bfb1942998e50c0ddf4ab95687.tar.gz evtclib-87eee24f20f9a5bfb1942998e50c0ddf4ab95687.tar.bz2 evtclib-87eee24f20f9a5bfb1942998e50c0ddf4ab95687.zip |
Use num_derive::FromPrimitive without #[macro_use]
Diffstat (limited to 'src/statistics')
-rw-r--r-- | src/statistics/gamedata.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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)] |