aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2019-12-10 14:17:54 +0100
committerDaniel Schadt <kingdread@gmx.de>2019-12-10 14:17:54 +0100
commit0c9276482d1508480ca247183853a31b762d25cf (patch)
tree49248d34082ed6b3db0bab21a20cc48f5803898a /src/main.rs
parent8212e56fd470985bcb5dca94defc40854fb95894 (diff)
downloadkondou-0c9276482d1508480ca247183853a31b762d25cf.tar.gz
kondou-0c9276482d1508480ca247183853a31b762d25cf.tar.bz2
kondou-0c9276482d1508480ca247183853a31b762d25cf.zip
make skill lookup table static
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 397171c..d928c09 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -12,6 +12,8 @@ extern crate termcolor;
extern crate xdg;
#[macro_use]
extern crate quick_error;
+#[macro_use]
+extern crate lazy_static;
use std::error::Error as StdError;
use std::fmt;